| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge pull request #810 from yuriks/memmap | Yuri Kunde Schlesner | 2015-05-30 | 2 | -0/+445 |
|\ |
|
| * | Kernel: Add VMManager to manage process address spaces | Yuri Kunde Schlesner | 2015-05-27 | 2 | -0/+445 |
* | | Remove every trailing whitespace from the project (but externals). | Emmanuel Gil Peyrot | 2015-05-29 | 5 | -11/+11 |
|/ |
|
* | Kernel: Fix a warning introduced with ResourceLimit, and remove the fallback code to prevent it from happening again. | Emmanuel Gil Peyrot | 2015-05-21 | 1 | -2/+1 |
* | Kernel: Move reschedules from SVCs to actual mechanisms that reschedule. | bunnei | 2015-05-21 | 6 | -0/+20 |
* | Merge pull request #772 from lioncash/warn | bunnei | 2015-05-18 | 1 | -3/+3 |
|\ |
|
| * | process: Get rid of warnings | Lioncash | 2015-05-14 | 1 | -3/+3 |
* | | Core/ResourceLimits: Implemented the basic structure of ResourceLimits. | Subv | 2015-05-15 | 6 | -1/+286 |
* | | Memmap: Re-organize memory function in two files | Yuri Kunde Schlesner | 2015-05-15 | 6 | -6/+5 |
* | | thread: Fix a conditional check in Reschedule | Lioncash | 2015-05-14 | 1 | -1/+1 |
|/ |
|
* | Merge pull request #748 from Subv/tls_max | bunnei | 2015-05-12 | 3 | -7/+19 |
|\ |
|
| * | Core/Memory: Add TLS support for creating up to 300 threads | Subv | 2015-05-12 | 3 | -7/+19 |
* | | Merge pull request #751 from yuriks/idle-thread | bunnei | 2015-05-12 | 2 | -44/+19 |
|\ \ |
|
| * | | Thread: Remove the idle thread | Yuri Kunde Schlesner | 2015-05-12 | 2 | -44/+19 |
* | | | Merge pull request #757 from Subv/scheduling | bunnei | 2015-05-12 | 1 | -0/+2 |
|\ \ \
| |_|/
|/| | |
|
| * | | Core/Scheduling: Prepare the new priority in the thread queue when svcSetPriority is called | Subv | 2015-05-12 | 1 | -0/+2 |
| |/ |
|
* | | Merge pull request #750 from Subv/process_svc | Yuri Kunde Schlesner | 2015-05-12 | 5 | -2/+15 |
|\ \
| |/
|/| |
|
| * | fixup! | Subv | 2015-05-12 | 2 | -7/+3 |
| * | Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThread | Subv | 2015-05-11 | 5 | -2/+19 |
* | | Thread: Correctly set main thread initial stack position | Yuri Kunde Schlesner | 2015-05-11 | 3 | -5/+4 |
|/ |
|
* | Merge pull request #740 from yuriks/gsp-shmem | archshift | 2015-05-11 | 2 | -16/+37 |
|\ |
|
| * | Kernel: Zero-fill shared memory blocks when mapping | Yuri Kunde Schlesner | 2015-05-11 | 1 | -0/+8 |
| * | Kernel: Capture SharedMemory attributes at creation, not when mapping | Yuri Kunde Schlesner | 2015-05-11 | 2 | -16/+29 |
* | | fixup! Set the TLS address in the scheduler | Subv | 2015-05-11 | 2 | -2/+7 |
* | | Core/Memory: Give every emulated thread it's own TLS area. | Subv | 2015-05-11 | 3 | -4/+22 |
|/ |
|
* | Common: Remove the BIT macro | Yuri Kunde Schlesner | 2015-05-09 | 1 | -2/+2 |
* | Memory: Re-organize and rename memory area address constants | Yuri Kunde Schlesner | 2015-05-09 | 2 | -3/+4 |
* | Kernel: Remove unused g_main_thread variable | Yuri Kunde Schlesner | 2015-05-09 | 3 | -5/+1 |
* | Process: Rename StaticAddressMapping => AddressMapping | Yuri Kunde Schlesner | 2015-05-09 | 2 | -5/+5 |
* | Process: Add more documentation to the class members | Yuri Kunde Schlesner | 2015-05-09 | 1 | -2/+16 |
* | Process: Use BitField to store process flags | Yuri Kunde Schlesner | 2015-05-09 | 2 | -16/+24 |
* | Process: Support parsing of exheader kernel caps | Yuri Kunde Schlesner | 2015-05-09 | 2 | -4/+72 |
* | Kernel: Remove g_program_id | Yuri Kunde Schlesner | 2015-05-09 | 2 | -8/+0 |
* | Kernel: Introduce skeleton Process class to hold process data | Yuri Kunde Schlesner | 2015-05-09 | 4 | -19/+101 |
* | Common: Remove common.h | Yuri Kunde Schlesner | 2015-05-07 | 9 | -8/+14 |
* | Move typedefs from kernel.h to more appropriate places | Yuri Kunde Schlesner | 2015-05-07 | 1 | -10/+1 |
* | Kernel: Properly initialize and shutdown all modules. | bunnei | 2015-05-02 | 4 | -9/+20 |
* | Kernel: Use the correct format string for u64 hex. | Emmanuel Gil Peyrot | 2015-04-14 | 1 | -1/+1 |
* | SVC: Update various SVCs to cause a reschedule. | bunnei | 2015-04-10 | 1 | -4/+0 |
* | Kernel: Implemented priority inheritance for mutexes. | bunnei | 2015-04-10 | 3 | -4/+22 |
* | Thread: Implement priority boost for starved threads. | bunnei | 2015-04-10 | 2 | -22/+51 |
* | Kernel: Fixed default thread priority. | bunnei | 2015-04-10 | 2 | -5/+4 |
* | Initialize base address to 0x0 | Gareth Higgins | 2015-04-09 | 1 | -0/+1 |
* | Misc cleanup of common and related functions | archshift | 2015-02-20 | 1 | -2/+3 |
* | Build: Fixed some warnings | Subv | 2015-02-12 | 3 | -4/+4 |
* | Asserts: break/crash program, fit to style guide; log.h->assert.h | archshift | 2015-02-11 | 7 | -15/+13 |
* | Scheduler refactor Pt. 1 | Kevin Hartman | 2015-02-10 | 3 | -223/+258 |
* | Mutex: Locks should be recursive. | bunnei | 2015-02-10 | 2 | -16/+20 |
* | core: Fix some warnings on OSX | Lioncash | 2015-02-03 | 1 | -1/+0 |
* | Kernel: Stop creating useless Handles during object creation | Yuri Kunde Schlesner | 2015-02-02 | 12 | -36/+17 |
* | Kernel: Make WaitObjects share ownership of Threads waiting on them | Yuri Kunde Schlesner | 2015-02-02 | 6 | -12/+17 |
* | Explicitly instantiate constructors/destructors for Kernel objects | Yuri Kunde Schlesner | 2015-02-02 | 16 | -8/+50 |
* | Mutex: Replace g_mutex_held_locks with a set inside Thread | Yuri Kunde Schlesner | 2015-02-02 | 3 | -23/+18 |
* | Kernel: Fix bug in HandleTable::Close | Yuri Kunde Schlesner | 2015-02-02 | 1 | -1/+1 |
* | Kernel: Remove Object::GetHandle (it's not used anymore :D) | Yuri Kunde Schlesner | 2015-02-02 | 2 | -9/+1 |
* | Kernel: Introduce unique Object ids for debugging | Yuri Kunde Schlesner | 2015-02-02 | 4 | -8/+16 |
* | Kernel: Use separate Handle tables for CoreTiming userdata | Yuri Kunde Schlesner | 2015-02-02 | 4 | -18/+25 |
* | Kernel: Remove previous scheduled event when a Timer is re-Set | Yuri Kunde Schlesner | 2015-02-02 | 1 | -0/+3 |
* | Thread: Modernize two functions that slipped through previous rebases | Yuri Kunde Schlesner | 2015-02-02 | 3 | -15/+13 |
* | arm: Clean up ARMul_State | Lioncash | 2015-02-01 | 1 | -1/+1 |
* | shared_memory: Fix assignments in SharedMemory::Map | Lioncash | 2015-01-30 | 2 | -4/+4 |
* | Kernel: Mark all appropriate kernel objects as "final" | Yuri Kunde Schlesner | 2015-01-30 | 7 | -8/+7 |
* | Remove result.h InvalidHandle | Yuri Kunde Schlesner | 2015-01-30 | 1 | -1/+2 |
* | Kernel: Convert Event to not use Handles | Yuri Kunde Schlesner | 2015-01-30 | 2 | -83/+51 |
* | Kernel: Convert Timer to (mostly) not use Handles | Yuri Kunde Schlesner | 2015-01-30 | 2 | -104/+72 |
* | Kernel: Convert Mutex to not use Handles | Yuri Kunde Schlesner | 2015-01-30 | 2 | -101/+82 |
* | Kernel: Convert AddressArbiter to not use Handles | Yuri Kunde Schlesner | 2015-01-30 | 2 | -32/+31 |
* | Kernel: Convert Semaphore to not use Handles | Yuri Kunde Schlesner | 2015-01-30 | 2 | -61/+61 |
* | Kernel: Convert SharedMemory to not use Handles | Yuri Kunde Schlesner | 2015-01-30 | 2 | -71/+54 |
* | Move VAddr/PAddr typedefs to kernel.h | Yuri Kunde Schlesner | 2015-01-30 | 1 | -0/+5 |
* | Kernel: Remove useless/duplicated comments; mark functions static | Yuri Kunde Schlesner | 2015-01-30 | 6 | -32/+8 |
* | Thread: Fix WaitSynchronization1 to not set register 1 on thread wakeup. | bunnei | 2015-01-22 | 2 | -22/+42 |
* | Thread: Use std::find in CheckWait_WaitObject. | bunnei | 2015-01-22 | 1 | -4/+5 |
* | Mutex: Cleanup and remove redundant code. | bunnei | 2015-01-22 | 3 | -47/+29 |
* | Kernel: Renamed some functions for clarity. | bunnei | 2015-01-22 | 7 | -10/+10 |
* | Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void. | bunnei | 2015-01-22 | 8 | -64/+39 |
* | WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" pure virtual. | bunnei | 2015-01-22 | 8 | -21/+20 |
* | Event: Fix implementation of "non-sticky" events. | bunnei | 2015-01-22 | 1 | -0/+4 |
* | Session: Change to a WaitObject. | bunnei | 2015-01-22 | 3 | -2/+9 |
* | Kernel: Reschedule on SignalEvent and SendSyncRequest, fix some bugs. | bunnei | 2015-01-22 | 1 | -1/+1 |
* | Mutex: Fix a bug where the thread should not wait if it already has the mutex. | bunnei | 2015-01-22 | 1 | -1/+4 |
* | Kernel: Moved Wait and Acquire to WaitObject, added way to retrieve a WaitObject safely. | bunnei | 2015-01-22 | 3 | -18/+57 |
* | AddressArbiter: Changed to Kernel::Object, big cleanup, removed code that made no sense. | bunnei | 2015-01-22 | 4 | -35/+42 |
* | Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks. | bunnei | 2015-01-22 | 8 | -112/+43 |
* | WaitSynchronizationN: Refactor to fix several bugs | bunnei | 2015-01-22 | 7 | -54/+49 |
* | Kernel: Separate WaitSynchronization into Wait and Acquire methods. | bunnei | 2015-01-22 | 7 | -14/+54 |
* | WaitSynchronizationN: Implement return values | bunnei | 2015-01-22 | 9 | -56/+139 |
* | Event: Fixed some bugs and cleanup (Subv) | bunnei | 2015-01-22 | 2 | -54/+13 |
* | Thread: Keep track of multiple wait objects. | bunnei | 2015-01-22 | 3 | -16/+30 |
* | Event: Get rid of permanent_lock hack. | bunnei | 2015-01-22 | 2 | -36/+8 |
* | WaitObject: Added RemoveWaitingThread, fixed a bug, and cleanup. | bunnei | 2015-01-22 | 2 | -4/+17 |
* | Kernel: Added WaitObject and changed "waitable" objects inherit from it. | bunnei | 2015-01-22 | 8 | -71/+73 |
* | core: Fix a few docstrings | Lioncash | 2015-01-20 | 2 | -2/+2 |
* | AddrArbiter: Implement arbitration types 3 and 4. | Subv | 2015-01-13 | 2 | -3/+20 |
* | Merge pull request #466 from Subv/wake | bunnei | 2015-01-11 | 1 | -0/+3 |
|\ |
|
| * | Thread: Prevent waking a thread multiple times. | Subv | 2015-01-11 | 1 | -0/+3 |
* | | Kernel: Start using boost::intrusive_ptr for lifetime management | Yuri Kunde Schlesner | 2015-01-09 | 10 | -76/+75 |
* | | Kernel: Don't re-assign object's handle when duplicating one | Yuri Kunde Schlesner | 2015-01-09 | 2 | -2/+3 |
|/ |
|
* | Thread: Fix nullptr access in a logging function | Yuri Kunde Schlesner | 2015-01-09 | 1 | -1/+2 |
* | Thread: Rename thread_queue => thread_list | Yuri Kunde Schlesner | 2015-01-09 | 1 | -6/+6 |
* | Thread: Reduce use of Handles and move some funcs to inside the class. | Yuri Kunde Schlesner | 2015-01-09 | 9 | -281/+190 |
* | Kernel: Move Thread's definition to the header file | Yuri Kunde Schlesner | 2015-01-09 | 3 | -53/+67 |
* | Move ThreadContext to core/core.h and deal with the fallout | Yuri Kunde Schlesner | 2015-01-09 | 2 | -4/+6 |
* | Merge pull request #255 from Subv/cbranch_3 | bunnei | 2015-01-09 | 5 | -1/+194 |
|\ |
|
| * | SVC: Implemented the Timer service calls. | Subv | 2015-01-09 | 5 | -1/+194 |
* | | SVC: Fixed SleepThread. | Subv | 2015-01-09 | 2 | -8/+39 |
* | | Threads: Use a dummy idle thread when no other are ready. | Subv | 2015-01-08 | 3 | -1/+35 |
* | | Common: Clean up ThreadQueueList | Yuri Kunde Schlesner | 2015-01-07 | 1 | -1/+1 |
|/ |
|
* | Merge pull request #407 from Subv/arbiter | bunnei | 2015-01-05 | 1 | -0/+11 |
|\ |
|
| * | AddressArbiter: Ported arbitration type 2 from 3dmoo. | Subv | 2015-01-03 | 1 | -0/+11 |
* | | Mutex: Add the calling thread to the waiting list when needed | Subv | 2015-01-04 | 1 | -2/+2 |
|/ |
|
* | Kernel: New handle manager | Yuri Kunde Schlesner | 2014-12-28 | 9 | -142/+189 |
* | Kernel: Replace GetStaticHandleType by HANDLE_TYPE constants | Yuri Kunde Schlesner | 2014-12-28 | 8 | -15/+15 |
* | Rename ObjectPool to HandleTable | Yuri Kunde Schlesner | 2014-12-28 | 8 | -41/+41 |
* | Merge pull request #291 from purpasmart96/license | bunnei | 2014-12-21 | 15 | -16/+16 |
|\ |
|
| * | License change | purpasmart96 | 2014-12-21 | 15 | -16/+16 |
* | | Thread: Wait current thread on svc_SleepThread | bunnei | 2014-12-21 | 2 | -21/+33 |
* | | Merge pull request #316 from yuriks/thread-handle | bunnei | 2014-12-20 | 3 | -2/+16 |
|\ \ |
|
| * | | Kernel: Implement support for current thread pseudo-handle | Yuri Kunde Schlesner | 2014-12-20 | 3 | -2/+16 |
* | | | Clean up some warnings | Chin | 2014-12-20 | 2 | -5/+5 |
| |/
|/| |
|
* | | Merge pull request #185 from purpasmart96/mem_perm | bunnei | 2014-12-18 | 1 | -5/+9 |
|\ \ |
|
| * | | Kernel:Add missing permissions in shared memory & svc | purpasmart96 | 2014-11-19 | 1 | -5/+9 |
* | | | Filesystem/Archives: Implemented the SaveData archive | Subv | 2014-12-18 | 2 | -0/+7 |
| |/
|/| |
|
* | | HLE: Rename namespaces to match move & fix initialization order | Yuri Kunde Schlesner | 2014-12-16 | 1 | -5/+0 |
* | | HLE: Move kernel/archive.* to service/fs/ | Yuri Kunde Schlesner | 2014-12-16 | 3 | -534/+1 |
* | | Remove SyncRequest from K::Object and create a new K::Session type | Yuri Kunde Schlesner | 2014-12-15 | 3 | -38/+75 |
* | | Kernel/Semaphore: Small style change | Subv | 2014-12-13 | 1 | -1/+1 |
* | | Kernel/Semaphores: Invert the available count checking. | Subv | 2014-12-13 | 1 | -11/+9 |
* | | Kernel/Semaphores: Addressed some issues. | Subv | 2014-12-13 | 2 | -32/+18 |
* | | Semaphore: Removed an unneeded function | Subv | 2014-12-13 | 1 | -5/+0 |
* | | Semaphores: Addressed some style issues | Subv | 2014-12-13 | 1 | -6/+5 |
* | | Semaphore: Implemented the initial_count parameter. | Subv | 2014-12-13 | 2 | -5/+7 |
* | | SVC: Implemented ReleaseSemaphore. | Subv | 2014-12-13 | 2 | -16/+64 |
* | | SVC: Implemented svcCreateSemaphore | Subv | 2014-12-13 | 2 | -0/+98 |
* | | kernel: Remove unused log arguments | Lioncash | 2014-12-13 | 1 | -3/+3 |
* | | Convert old logging calls to new logging macros | Yuri Kunde Schlesner | 2014-12-13 | 6 | -72/+45 |
* | | Merge pull request #256 from Subv/mutex | bunnei | 2014-12-11 | 3 | -37/+67 |
|\ \ |
|
| * | | Mutex: Remove some forward declarations | Subv | 2014-12-07 | 1 | -16/+15 |
| * | | Mutex: Release all held mutexes when a thread exits. | Subv | 2014-12-07 | 3 | -22/+56 |
| * | | Mutex: Properly lock the mutex when a thread enters it | Subv | 2014-12-06 | 1 | -12/+9 |
* | | | Thread: Fixed to wait on address when in arbitration. | bunnei | 2014-12-09 | 3 | -11/+31 |
* | | | Make OpenDirectory fail if the directory doesn't exist | archshift | 2014-12-07 | 1 | -0/+5 |
|/ / |
|
* | | Merge pull request #250 from Subv/cbranch_2 | bunnei | 2014-12-05 | 2 | -0/+26 |
|\ \ |
|
| * | | Threads: Remove a redundant function. | Subv | 2014-12-04 | 1 | -9/+1 |
| * | | Threads: Implemented a sequential thread id | Subv | 2014-12-04 | 2 | -4/+19 |
| * | | SVC: Implemented GetThreadId. | Subv | 2014-12-04 | 2 | -0/+19 |
* | | | Merge pull request #222 from archshift/renamexyz | bunnei | 2014-12-05 | 2 | -33/+74 |
|\ \ \ |
|
| * | | | Updated archive.cpp functions for proper error handling | archshift | 2014-12-04 | 2 | -65/+36 |
| * | | | Implemented RenameDirectory in FS:USER | archshift | 2014-11-25 | 2 | -0/+35 |
| * | | | Implemented RenameFile in FS:USER | archshift | 2014-11-25 | 2 | -0/+35 |
* | | | | kernel: Shorten GetCount | Lioncash | 2014-12-04 | 1 | -6/+3 |
* | | | | kernel: Make some functions const | Lioncash | 2014-12-04 | 2 | -4/+4 |
| |/ /
|/| | |
|
* | | | Merge pull request #225 from bunnei/fix-release-mutex | bunnei | 2014-11-30 | 1 | -8/+7 |
|\ \ \ |
|
| * | | | Mutex: Changed behavior to always release mutex for all threads. | bunnei | 2014-11-26 | 1 | -8/+7 |
| |/ / |
|
* / / | Thread: Check that thread is actually in "wait state" when verifying wait. | bunnei | 2014-11-26 | 1 | -1/+1 |
|/ / |
|
* | | Use pointers instead of passing handles around in some functions. | Yuri Kunde Schlesner | 2014-11-24 | 1 | -19/+15 |
* | | Remove duplicated docs/update them for changed parameters. | Yuri Kunde Schlesner | 2014-11-24 | 9 | -78/+0 |
* | | HLE: Revamp error handling throrough the HLE code | Yuri Kunde Schlesner | 2014-11-24 | 13 | -201/+187 |
* | | Merge pull request #191 from archshift/deletexyz | bunnei | 2014-11-24 | 2 | -1/+47 |
|\ \ |
|
| * | | Added DeleteFile and DeleteDirectory functions to FS:USER and the archives. | archshift | 2014-11-23 | 2 | -1/+47 |
* | | | Merge pull request #211 from linkmauve/master | bunnei | 2014-11-19 | 12 | -42/+42 |
|\ \ \ |
|
| * | | | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generated | Emmanuel Gil Peyrot | 2014-11-19 | 12 | -42/+42 |
* | | | | Merge pull request #208 from lioncash/statics | bunnei | 2014-11-19 | 1 | -22/+22 |
|\ \ \ \
| |/ / /
|/| | | |
|
| * | | | Add static to some variables | Lioncash | 2014-11-19 | 1 | -22/+22 |
| |/ / |
|
* / / | Remove extraneous semicolons | Lioncash | 2014-11-18 | 1 | -1/+1 |
|/ / |
|
* | | Archive: Fixed to not destroy archive handle on close. | bunnei | 2014-11-18 | 1 | -3/+3 |
* | | Archive: Fixed close archive before freeing. | bunnei | 2014-11-18 | 1 | -1/+1 |
* | | FS_User: Support FileSye::Path in a more generic way. | bunnei | 2014-11-18 | 1 | -0/+11 |
* | | FileSys: Updated backend code to use FileSys::Path instead of string for paths. | bunnei | 2014-11-18 | 2 | -10/+10 |
* | | Fix two format strings. | Lioncash | 2014-11-14 | 1 | -1/+1 |
|/ |
|
* | Added CreateDirectory function to service/fs.cpp, and in Archive. | archshift | 2014-11-02 | 2 | -2/+25 |
* | Fix some warnings | Sean | 2014-10-30 | 1 | -3/+3 |
* | Add `override` keyword through the code. | Yuri Kunde Schlesner | 2014-10-26 | 6 | -35/+35 |
* | FileSys: split the constructor into an Open method, in order to notify the opener something went wrong. | Emmanuel Gil Peyrot | 2014-10-06 | 1 | -0/+3 |
* | FileSys/Kernel: Implement SetSize service call for File objects. | Emmanuel Gil Peyrot | 2014-10-06 | 1 | -0/+8 |
* | Use the citra user path for the sdmc directory | archshift | 2014-09-21 | 1 | -2/+1 |
* | Kernel: Implement the Close command for Archive, File and Directory. | Emmanuel Gil Peyrot | 2014-09-17 | 2 | -0/+43 |
* | Kernel: Add a Directory object and a getter for it from an Archive object. | Emmanuel Gil Peyrot | 2014-09-17 | 3 | -0/+91 |
* | Kernel: Add a File object and a getter for it from an Archive object. | Emmanuel Gil Peyrot | 2014-09-17 | 2 | -0/+118 |
* | Core: Get rid of unnecessary switch statement in Kernel | Lioncash | 2014-09-15 | 1 | -41/+2 |
* | core: Prune redundant includes | archshift | 2014-09-09 | 3 | -6/+0 |
* | Threading: Fix thread starting to execute first instruction correctly. | bunnei | 2014-08-28 | 1 | -0/+5 |
* | Added FS functions to Archive and Archive_RomFS | archshift | 2014-08-23 | 1 | -3/+31 |
* | Core: Use std::array for managing kernel object space | Lioncash | 2014-08-19 | 2 | -5/+5 |
* | Core: Alter the kernel string functions to use std::string instead of const char*. | Lioncash | 2014-08-18 | 8 | -25/+22 |
* | Thread: Added more descriptive comment to WaitCurrentThread. | bunnei | 2014-08-07 | 2 | -2/+10 |
* | AddressArbiter: Removed unnecessary HLE::Reschedule. | bunnei | 2014-08-06 | 1 | -1/+0 |
* | AddressArbiter: Fixed bug with break statements missing from case statements. | bunnei | 2014-08-06 | 1 | -0/+2 |
* | Kernel: Updated Event and Mutex to specify handle that they are blocking for. | bunnei | 2014-08-06 | 2 | -2/+2 |
* | Kernel: Added preliminary support for address arbiters. | bunnei | 2014-07-09 | 3 | -1/+124 |
* | Thread: Added functions to resume threads from address arbitration. | bunnei | 2014-07-09 | 2 | -0/+44 |
* | SharedMemory: Updated MapSharedMemory to use an enum for permissions. | bunnei | 2014-07-05 | 2 | -6/+27 |
* | Kernel: Added support for shared memory objects. | bunnei | 2014-07-05 | 2 | -0/+132 |
* | Archive: Added Init/Shutdown methods to reset kernel archive state. | bunnei | 2014-07-05 | 3 | -0/+19 |
* | FileSys: Added preliminary support for applications reading the RomFS archive. | bunnei | 2014-07-05 | 2 | -10/+105 |
* | Kernel: Added stubbed code to support creation of kernel Archive objects. | bunnei | 2014-06-27 | 3 | -0/+85 |
* | Kernel: Removed unnecessary "#pragma once". | bunnei | 2014-06-13 | 1 | -2/+0 |
* | Kernel: Added freeing of kernel objects on emulator shutdown. | bunnei | 2014-06-13 | 2 | -0/+10 |
* | Event: Updated several log messages to be assertions. | bunnei | 2014-06-13 | 1 | -16/+8 |
* | Thread: Renamed occurrences of "t" to "thread" to improve readability. | bunnei | 2014-06-13 | 1 | -48/+45 |
* | Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could unnecessarily be logged. | bunnei | 2014-06-13 | 1 | -9/+7 |
* | HLE: Removed usnused EatCycles function. | bunnei | 2014-06-13 | 1 | -9/+0 |
* | Thread: Moved position of * in arguments. | bunnei | 2014-06-13 | 1 | -2/+2 |
* | Thread: Updated VerifyWait to be more readable (but functionally the same). | bunnei | 2014-06-13 | 1 | -4/+3 |
* | HLE: Updated all uses of NULL to nullptr (to be C++11 compliant) | bunnei | 2014-06-13 | 3 | -9/+9 |
* | Kernel: Updated various kernel function "name" arguments to be const references. | bunnei | 2014-06-13 | 4 | -6/+6 |
* | HLE: Updated various handle debug assertions to be more clear. | bunnei | 2014-06-13 | 2 | -3/+3 |
* | Mutex: Moved ReleaseMutex iterator declaration to be inside while loop. | bunnei | 2014-06-13 | 1 | -2/+1 |
* | Kernel: Updated several member functions to be const | bunnei | 2014-06-13 | 4 | -11/+11 |
* | Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrectly set | bunnei | 2014-06-13 | 1 | -1/+1 |
* | Kernel: Made SyncRequest not pure virtual, with a default implementation of error (as this is not required for all kernel objects) | bunnei | 2014-06-13 | 3 | -23/+4 |
* | Kernel: Added real support for thread and event blocking | bunnei | 2014-06-13 | 5 | -48/+165 |
* | kernel: changed current default thread priority back to 0x30 - I think this is more correct | bunnei | 2014-06-05 | 1 | -1/+1 |
* | svc: added optional name field to Event and Mutex (used for debugging) | bunnei | 2014-06-03 | 4 | -8/+21 |
* | kernel: moved position of * for GetTypeName and GetName | bunnei | 2014-06-03 | 1 | -2/+2 |
* | svc: added GetThreadPriority and SetThreadPriority, added (incomplete) DuplicateHandle support | bunnei | 2014-06-02 | 2 | -0/+51 |
* | kernel: changed main thread priority to default, updated Kernel::Reschedule to use PrepareReschedule | bunnei | 2014-06-02 | 3 | -4/+6 |
* | thread: updated Reschedule to sit at a synchronization barrier when no other threads are ready for execution | bunnei | 2014-06-01 | 1 | -0/+18 |
* | event: added a hackish ability to set an event as "locked" to its current state, cleaned up some comments | bunnei | 2014-06-01 | 2 | -4/+32 |
* | mutex: fixed typo in ReleaseMutex | bunnei | 2014-05-30 | 1 | -1/+3 |
* | event: added support for ClearEvent, fixed a bug with CreateEvent, fixed some comments | bunnei | 2014-05-30 | 2 | -9/+14 |
* | mutex: added preliminary SyncRequest/WaitSynchronization, added some comments/assertions | bunnei | 2014-05-28 | 1 | -0/+6 |
* | event: fixed typos and updated CMakeLists | bunnei | 2014-05-28 | 1 | -1/+1 |
* | event: added SetEventLocked method to change status an events lock | bunnei | 2014-05-28 | 2 | -0/+18 |
* | kernel: added event module to support creation of CTR "Event" objects | bunnei | 2014-05-28 | 2 | -0/+119 |
* | mutex: removed docstring comment that is no longer relevant | bunnei | 2014-05-27 | 1 | -1/+0 |
* | mutex: added additional docstrings | bunnei | 2014-05-27 | 1 | -0/+2 |
* | kernel: added WaitSynchronization method to Kernel::Object | bunnei | 2014-05-27 | 3 | -0/+29 |
* | kernel: updated SyncRequest to take boolean thread wait result as a parameter | bunnei | 2014-05-27 | 3 | -5/+20 |
* | kernel: added enum for known CurrentThread and CurrentProcess handles | bunnei | 2014-05-27 | 1 | -0/+5 |
* | kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequest | bunnei | 2014-05-27 | 3 | -0/+11 |
* | thread: renamed "WaitCurThread" to "WaitCurrentThread", removed unused "reason" argument | bunnei | 2014-05-23 | 2 | -4/+4 |
* | thread: removed unused SwitchContext/Reschedule reason field, added missing arg parameter to SVC CreateThread | bunnei | 2014-05-23 | 2 | -4/+4 |
* | kernel: refactored function naming to remove "__" prefix | bunnei | 2014-05-23 | 5 | -62/+72 |
* | thread: moved ThreadStatus/WaitType to header, added support for arg on CreateThread, added correct CPSR reset | bunnei | 2014-05-23 | 2 | -35/+40 |
* | thread: fixed bug where result of __NextThread was not being properly checked when NULL | bunnei | 2014-05-22 | 1 | -1/+1 |
* | mutex: refactored the interface to code to return a Mutex* handle | bunnei | 2014-05-21 | 2 | -3/+13 |
* | mutex: initial commit of HLE module | bunnei | 2014-05-21 | 2 | -0/+148 |
* | kernel: fixed include, in general include "common.h" not "common_types.h" | bunnei | 2014-05-21 | 1 | -1/+1 |
* | thread: added correct lowest thread priority, added a thread priority check, and added some comments | bunnei | 2014-05-21 | 2 | -6/+10 |
* | thread: exposed ResumeThreadFromWait function for use in other kernel modules | bunnei | 2014-05-21 | 2 | -8/+11 |
* | thread: moved threading calls to the Kernel namespace | bunnei | 2014-05-21 | 3 | -101/+115 |
* | ARM_Interface: added SaveContext and LoadContext functions for HLE thread switching | bunnei | 2014-05-21 | 1 | -36/+2 |
* | renamed "syscall" module to "svc" (more accurate naming) | bunnei | 2014-05-21 | 1 | -1/+1 |
* | thread: whitespace change - fixed * and & placement | bunnei | 2014-05-21 | 2 | -27/+27 |
* | - created a Kernel namespace | bunnei | 2014-05-21 | 4 | -67/+79 |
* | thread: added declaration for __KernelReschedule to be used by syscall module | bunnei | 2014-05-20 | 1 | -0/+3 |
* | - updated service(s) to be KernelObject's | bunnei | 2014-05-19 | 1 | -4/+5 |
* | - moved Handle/Result definitions to kernel.h | bunnei | 2014-05-19 | 2 | -3/+2 |
* | changed a comment | bunnei | 2014-05-17 | 2 | -2/+2 |
* | - added enum ThreadProcessorId | bunnei | 2014-05-17 | 2 | -53/+107 |
* | - replaced KERNELOBJECT_MAX_NAME_LENGTH with KERNEL_MAX_NAME_LENGTH | bunnei | 2014-05-17 | 3 | -8/+12 |
* | completely gutted/refactored threading code to be simpler | bunnei | 2014-05-16 | 2 | -658/+230 |
* | changed "UID" to "Handle" to be a little more consistent with CTR naming | bunnei | 2014-05-16 | 2 | -18/+21 |
* | - added helper function for __KernelCreateThread | bunnei | 2014-05-15 | 2 | -4/+76 |
* | changed primary thread priority to 0x30 - this is typical, not 0x31 | bunnei | 2014-05-15 | 1 | -1/+2 |
* | fixed thread reset to not set stack address | bunnei | 2014-05-14 | 1 | -1/+1 |
* | various cleanups / remove unused code | bunnei | 2014-05-14 | 2 | -65/+29 |
* | added a bunch of threading code, recycled from PPSSPP, with lots of hacks in for 3DS... doesn't really do much yet. Just a jumping off point | bunnei | 2014-05-14 | 2 | -70/+543 |
* | - added __KernelLoadExec function | bunnei | 2014-05-14 | 2 | -13/+35 |
* | added initial kernel/thread modules | bunnei | 2014-05-10 | 4 | -0/+527 |