| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-09 | Kernel: Start using boost::intrusive_ptr for lifetime management | Yuri Kunde Schlesner | |
| 2015-01-09 | Kernel: Don't re-assign object's handle when duplicating one | Yuri Kunde Schlesner | |
| 2015-01-09 | Thread: Fix nullptr access in a logging function | Yuri Kunde Schlesner | |
| 2015-01-09 | Thread: Rename thread_queue => thread_list | Yuri Kunde Schlesner | |
| 2015-01-09 | Thread: Reduce use of Handles and move some funcs to inside the class. | Yuri Kunde Schlesner | |
| 2015-01-09 | Kernel: Move Thread's definition to the header file | Yuri Kunde Schlesner | |
| 2015-01-09 | Move ThreadContext to core/core.h and deal with the fallout | Yuri Kunde Schlesner | |
| 2015-01-08 | Merge pull request #255 from Subv/cbranch_3 | bunnei | |
| Implemented timers | |||
| 2015-01-08 | SVC: Implemented the Timer service calls. | Subv | |
| 2015-01-08 | SVC: Fixed SleepThread. | Subv | |
| It will now properly wait the specified number of nanoseconds and then wake up the thread. | |||
| 2015-01-07 | Threads: Use a dummy idle thread when no other are ready. | Subv | |
| This thread will not actually execute instructions, it will only advance the timing/events and try to yield immediately to the next ready thread, if there aren't any ready threads then it will be rescheduled and start its job again. | |||
| 2015-01-07 | Common: Clean up ThreadQueueList | Yuri Kunde Schlesner | |
| Replace all the C-style complicated buffer management with a std::deque. In addition to making the code easier to understand it also adds support for non-POD IdTypes. Also clean the rest of the code to follow our code style. | |||
| 2015-01-05 | Merge pull request #407 from Subv/arbiter | bunnei | |
| AddressArbiter: Ported arbitration type 2 from 3dmoo. | |||
| 2015-01-04 | Mutex: Add the calling thread to the waiting list when needed | Subv | |
| This will happen when the mutex is already owned by another thread. Should fix some issues with games being stuck due to waiting threads not being awoken. | |||
| 2015-01-03 | AddressArbiter: Ported arbitration type 2 from 3dmoo. | Subv | |
| (Thanks 3dmoo!) | |||
| 2014-12-28 | Kernel: New handle manager | Yuri Kunde Schlesner | |
| This handle manager more closely mirrors the behaviour of the CTR-OS one. In addition object ref-counts and support for DuplicateHandle have been added. Note that support for DuplicateHandle is still experimental, since parts of the kernel still use Handles internally, which will likely cause troubles if two different handles to the same object are used to e.g. wait on a synchronization primitive. | |||
| 2014-12-28 | Kernel: Replace GetStaticHandleType by HANDLE_TYPE constants | Yuri Kunde Schlesner | |
| 2014-12-28 | Rename ObjectPool to HandleTable | Yuri Kunde Schlesner | |
| 2014-12-21 | Merge pull request #291 from purpasmart96/license | bunnei | |
| License change | |||
| 2014-12-20 | License change | purpasmart96 | |
| 2014-12-20 | Thread: Wait current thread on svc_SleepThread | bunnei | |
| - Removed unused VBLANK sleep mode - Added error log for bad context switch - Renamed VerifyWait to CheckWaitType to be more clear | |||
| 2014-12-20 | Merge pull request #316 from yuriks/thread-handle | bunnei | |
| Kernel: Implement support for current thread pseudo-handle | |||
| 2014-12-20 | Clean up some warnings | Chin | |
| 2014-12-20 | Kernel: Implement support for current thread pseudo-handle | Yuri Kunde Schlesner | |
| This boots a few (mostly Nintendo 1st party) games further. | |||
| 2014-12-17 | Merge pull request #185 from purpasmart96/mem_perm | bunnei | |
| Kernel: Add missing permissions | |||
| 2014-12-17 | Filesystem/Archives: Implemented the SaveData archive | Subv | |
| The savedata for each game is stored in /savedata/<ProgramID> for NCCH files. ELF files and 3DSX files use the folder 0 because they have no ID information Got rid of the code duplication in File and Directory Files that deal with the host machine's file system now live in DiskFile, similarly for directories and DiskDirectory and archives with DiskArchive. FS_U: Use the correct error code when a file wasn't found | |||
| 2014-12-16 | HLE: Rename namespaces to match move & fix initialization order | Yuri Kunde Schlesner | |
| 2014-12-16 | HLE: Move kernel/archive.* to service/fs/ | Yuri Kunde Schlesner | |
| 2014-12-15 | Remove SyncRequest from K::Object and create a new K::Session type | Yuri Kunde Schlesner | |
| This is a first step at fixing the conceptual insanity that is our handling of service and IPC calls. For now, interfaces still directly derived from Session because we don't have the infrastructure to do it properly. (That is, Processes and scheduling them.) | |||
| 2014-12-13 | Kernel/Semaphore: Small style change | Subv | |
| 2014-12-13 | Kernel/Semaphores: Invert the available count checking. | Subv | |
| Same semantics, idea by @yuriks | |||
| 2014-12-13 | Kernel/Semaphores: Addressed some issues. | Subv | |
| 2014-12-13 | Semaphore: Removed an unneeded function | Subv | |
| 2014-12-13 | Semaphores: Addressed some style issues | Subv | |
| 2014-12-13 | Semaphore: Implemented the initial_count parameter. | Subv | |
| 2014-12-13 | SVC: Implemented ReleaseSemaphore. | Subv | |
| This behavior was tested on hardware, however i'm still not sure what use the "initial_count" parameter has | |||
| 2014-12-13 | SVC: Implemented svcCreateSemaphore | Subv | |
| ToDo: Implement svcReleaseSemaphore * Some testing against hardware needed | |||
| 2014-12-13 | kernel: Remove unused log arguments | Lioncash | |
| 2014-12-13 | Convert old logging calls to new logging macros | Yuri Kunde Schlesner | |
| 2014-12-10 | Merge pull request #256 from Subv/mutex | bunnei | |
| Kernel/Mutex: Properly lock the mutex when a thread enters it | |||
| 2014-12-08 | Thread: Fixed to wait on address when in arbitration. | bunnei | |
| 2014-12-07 | Make OpenDirectory fail if the directory doesn't exist | archshift | |
| This is in line with what the hardware itself does. It does this by splitting the initial directory opening into Directory.Open(), which will return false if a stat fails. Then, Archive::OpenDirectory will return nullptr, and archive.cpp will return an error code . | |||
| 2014-12-07 | Mutex: Remove some forward declarations | Subv | |
| Moved Mutex::WaitSynchronization to the end of the file. | |||
| 2014-12-07 | Mutex: Release all held mutexes when a thread exits. | Subv | |
| 2014-12-05 | Mutex: Properly lock the mutex when a thread enters it | Subv | |
| Also resume only the next immediate thread waiting for the mutex when it is released, instead of resuming them all. | |||
| 2014-12-04 | Merge pull request #250 from Subv/cbranch_2 | bunnei | |
| SVC: Implemented GetThreadId. | |||
| 2014-12-04 | Merge pull request #222 from archshift/renamexyz | bunnei | |
| Implemented RenameFile and RenameDirectory in FS:USER | |||
| 2014-12-04 | Threads: Remove a redundant function. | Subv | |
| Use the next_thread_id variable directly. | |||
| 2014-12-04 | Threads: Implemented a sequential thread id | Subv | |
| 2014-12-03 | Updated archive.cpp functions for proper error handling | archshift | |
