| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-10 | Stubbed y2r:u IsBusyConversion | archshift | |
| There is no documentation available on this function, but we set the result to false as a stub. This allows Super Little Acorns to move all the way in game with pp3c. | |||
| 2015-01-10 | Added Archive ID to fs:USER debug logs involving opening the archive. | archshift | |
| 2015-01-10 | Logging: Log all called service functions (under trace). Compile out all ↵ | archshift | |
| trace logs under release for performance. | |||
| 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 | Merge pull request #444 from yuriks/handle-reform2 | bunnei | |
| Kernel Lifetime Reform Pt. 2 | |||
| 2015-01-09 | Merge pull request #436 from kevinhartman/system-core | bunnei | |
| Warn if a new thread is intended to be run on the system CPU core | |||
| 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 | Merge pull request #404 from bunnei/more-frame-synch-fixes | bunnei | |
| GPU: Toggle active framebuffer each frame | |||
| 2015-01-07 | GSP: Toggle active framebuffer each frame | bunnei | |
| 2015-01-07 | Merge pull request #431 from yuriks/thread-queue-cleanup | bunnei | |
| Common: Clean up ThreadQueueList | |||
| 2015-01-07 | Warn if a new thread is intended to be run on the system CPU core until we ↵ | Kevin Hartman | |
| implement correct scheduling for such a thread. | |||
| 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-07 | Fix double-free in Service manager during shutdown | Yuri Kunde Schlesner | |
| Fixes #423. | |||
| 2015-01-06 | Merge pull request #376 from Subv/arc_reorder | bunnei | |
| Archives: Change the folder layout of some archives. | |||
| 2015-01-06 | Archives: Changed the unimplemented archives comment. | Subv | |
| It now refers to me as the PoC | |||
| 2015-01-06 | Archives: Addressed some comments | Subv | |
| 2015-01-05 | Merge pull request #413 from purpasmart96/serv_clean | bunnei | |
| Services: Clean up a few things and add a few function names | |||
| 2015-01-05 | Merge pull request #272 from rohit-n/sign-compare | bunnei | |
| Silence some -Wsign-compare warnings. | |||
| 2015-01-05 | Services: Clean up a few things and add a few function names | purpasmart96 | |
| 2015-01-05 | DSP: Signal (faked) interrupt on every frame. | bunnei | |
| - Hack to work around games checking that the DSP event has been signaled by a real DSP interrupt. | |||
| 2015-01-05 | Merge pull request #407 from Subv/arbiter | bunnei | |
| AddressArbiter: Ported arbitration type 2 from 3dmoo. | |||
| 2015-01-04 | Merge pull request #408 from Subv/mutex | bunnei | |
| Mutex: Add the calling thread to the waiting list when needed | |||
| 2015-01-04 | Merge pull request #386 from archshift/y2ru | bunnei | |
| Stub the y2r:u service | |||
| 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-04 | Archives: Make SYSTEM_ID and SDCARD_ID strings | Subv | |
| 2015-01-03 | Archives: Changed the way paths are built for the archives. | Subv | |
| Each archive now takes a mount point of either NAND or SDMC, and builds its own directory structure there, trying to simulate an HLE-friendly hardware layout | |||
| 2015-01-03 | Stub the y2r:u service | archshift | |
| 2015-01-03 | AddressArbiter: Ported arbitration type 2 from 3dmoo. | Subv | |
| (Thanks 3dmoo!) | |||
| 2015-01-02 | Archives: Change the folder layout of some archives. | Subv | |
| This is to better represent the hardware layout, they are still aren't quite accurate, but this better and will help a bit when implementing the other archives like NAND-RO and NAND-RW | |||
| 2015-01-02 | Archives: Reduced duplicate code in RomFS and SaveCheck. | Subv | |
| Fixed a few warnings and cleaned up the code | |||
| 2015-01-02 | SaveDataCheck: Preliminary work in this archive. | Subv | |
| This allows Steel Diver to boot further, some files are needed. This is still not ready and needs a big cleanup, this will possibly be delayed until the way we handle archives is fixed (with factory classes instead of ahead-of-time creation of archives) | |||
| 2015-01-02 | Merge pull request #391 from lioncash/pedantic | bunnei | |
| archive/elf: Minor misc changes. | |||
| 2015-01-02 | archive: Fix initializer list order | Lioncash | |
| 2015-01-02 | soc_u: Fix a missing formatting argument | Lioncash | |
| 2015-01-01 | Silence some -Wsign-compare warnings. | Rohit Nirmal | |
| 2014-12-31 | SOC_U: Preliminary implementation of sockets. | Subv | |
| Stubbed CreateMemoryBlock Using Berkeley sockets, and Winsock2.2 on Windows. So far ftpony creates the socket and accepts incoming connections SOC_U: Renamed functions to maintain consistency Also prevents possible scope errors / conflicts with the actual Berkeley socket functions SOCU: Close all the opened sockets when cleaning up SOCU | |||
| 2014-12-29 | APT:A: Some style changes | Subv | |
| 2014-12-29 | Archives: Implemented ExtSaveData and SharedExtSaveData | Subv | |
| They will be stored in /extsavedata/SDMC and /extsavedata/NAND respectively. Also redirect some APT_A functions to their APT_U equivalents. Implemented the gamecoin.dat file in SharedExtSaveData in the PTM module. Implemented formatting the savegame. Retake a previous savegame if it exists instead of reporting them as not formatted every time a game is loaded. | |||
| 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 | |
