| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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-13 | New logging system | Yuri Kunde Schlesner | |
| 2014-12-12 | Merge pull request #267 from bunnei/apt-shared-font | bunnei | |
| APT shared font loading | |||
| 2014-12-12 | APT_U: Added GetSharedFont service function. | bunnei | |
| 2014-12-12 | DSP: Added stub for ReadPipeIfPossible. | bunnei | |
| 2014-12-12 | MemMap: Renamed "GSP" heap to "linear", as this is not specific to GSP. | bunnei | |
| - Linear simply indicates that the mapped physical address is always MappedVAddr+0x0C000000, thus this memory can be used for hardware devices' DMA (such as the GPU). | |||
| 2014-12-10 | Merge pull request #256 from Subv/mutex | bunnei | |
| Kernel/Mutex: Properly lock the mutex when a thread enters it | |||
| 2014-12-10 | CFG:U: Store country codes as u16 instead of char pointers, and return the ↵ | Emmanuel Gil Peyrot | |
| correct error in GetCountryCodeID. | |||
| 2014-12-09 | GSP: Trigger GPU interrupts at more accurate locations. | bunnei | |
| 2014-12-09 | GSP: Updated TriggerCmdReqQueue to return success code. | bunnei | |
| 2014-12-09 | GSP: Updated RegisterInterruptRelayQueue to return expected magic number. | bunnei | |
| 2014-12-09 | GPU: Fixed bug in command list size decoding. | bunnei | |
| 2014-12-08 | Merge pull request #217 from archshift/cmd_buff | bunnei | |
| Log the cmd_buff arguments when citra comes across an unimplemented function | |||
| 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 | Merge pull request #248 from lioncash/kernel | bunnei | |
| Misc minor kernel-related changes. | |||
| 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 | |
| 2014-12-04 | SVC: Implemented GetThreadId. | Subv | |
| For now threads are using their Handle value as their Id, it should not really cause any problems because Handle values are unique in Citra, but it should be changed. I left a ToDo there because this is not correct behavior as per hardware. | |||
| 2014-12-03 | Merge pull request #247 from lioncash/const | bunnei | |
| hid_user: Pass by reference with PadButtonPress/PadButtonRelease | |||
| 2014-12-03 | Merge pull request #238 from archshift/dsp | bunnei | |
| Add stub for ConvertProcessFromDspDram | |||
| 2014-12-03 | Add stub for ConvertProcessFromDspDram | archshift | |
| Should theoretically push retail stuff further along | |||
| 2014-12-03 | kernel: Shorten GetCount | Lioncash | |
| 2014-12-03 | kernel: Make some functions const | Lioncash | |
| 2014-12-03 | hid_user: Pass by reference with PadButtonPress/PadButtonRelease | Lioncash | |
| 2014-12-03 | PTM_U: Added a stub for GetBatteryLevel & GetBatteryChargeState & ↵ | purpasmart96 | |
| GetAdapterState | |||
| 2014-12-03 | Merge pull request #231 from purpasmart96/serv_ac_wifi_status | bunnei | |
| AC_U: Added a stub for GetWifiStatus | |||
| 2014-12-03 | Merge pull request #219 from Subv/ptm | bunnei | |
| PTM_U: Implemented the GetShellState function. | |||
| 2014-12-02 | AC_U: Added a stub for GetWifiStatus | purpasmart96 | |
| 2014-11-30 | Merge pull request #224 from bunnei/dsp-service-improvements | bunnei | |
| Dsp service improvements | |||
| 2014-11-30 | Merge pull request #214 from Subv/master | bunnei | |
| CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString | |||
| 2014-11-30 | DSP: Added stubs for several commonly used DSP service functions. | bunnei | |
| 2014-11-30 | DSP: Fixed typo in port name. | bunnei | |
| 2014-11-30 | PTM_U: Implemented the GetShellState function. | Subv | |
| 2014-11-30 | Merge pull request #225 from bunnei/fix-release-mutex | bunnei | |
| Mutex: Changed behavior to always release mutex for all threads. | |||
| 2014-11-30 | Merge pull request #226 from bunnei/svc-and-thread-fixes | bunnei | |
| Svc and thread fixes | |||
| 2014-11-29 | CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString. | Subv | |
| 2014-11-27 | Fixed formatting and switch statement warnings | vaguilar | |
| 2014-11-26 | Thread: Check that thread is actually in "wait state" when verifying wait. | bunnei | |
| 2014-11-26 | SVC: Add debug log to ArbitrateAddress. | bunnei | |
| 2014-11-26 | SVC: SleepThread should yield to the next ready thread. | bunnei | |
| 2014-11-26 | Mutex: Changed behavior to always release mutex for all threads. | bunnei | |
| 2014-11-24 | Log the cmd_buff arguments when citra comes across an unimplemented function | archshift | |
