aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/dsp_dsp.cpp
Commit message (Collapse)AuthorAge
* Ensure all kernel objects are released during shutdownGravatar Yuri Kunde Schlesner2015-07-17
| | | | | | | | This commit fixes several kernel object leaks. The most severe of them was threads not being removed from the private handle table used for CoreTiming events. This resulted in Threads never being released, which in turn held references to Process, causing CodeSets to never be freed when loading other applications.
* Memory: Re-organize and rename memory area address constantsGravatar Yuri Kunde Schlesner2015-05-09
|
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Services: Initialize all state variables at bootup.Gravatar bunnei2015-05-01
|
* Services/Loader: Use more sensible log formats for certain functionsGravatar purpasmart962015-04-27
| | | | along with more info being logged.
* Services: Stubs and minor changesGravatar purpasmart962015-04-02
|
* core: Apply static to local functionsGravatar Lioncash2015-02-13
|
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-10
| | | | | | | Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
* Merge pull request #526 from purpasmart96/citra_stubsGravatar bunnei2015-02-10
|\ | | | | Services: Stub some functions
| * Services: Stub some functionsGravatar purpasmart962015-02-07
| |
* | Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner2015-02-02
| | | | | | | | | | They're finally unnecessary, and will stop cluttering the application's handle table.
* | Service: Clean-up InterfaceGravatar Yuri Kunde Schlesner2015-02-02
|/
* Kernel: Convert Event to not use HandlesGravatar Yuri Kunde Schlesner2015-01-30
|
* DSP: Removed useless spam log for SignalInterruptGravatar bunnei2015-01-15
|
* DSP: Signal (faked) interrupt on every frame.Gravatar bunnei2015-01-05
| | | | - Hack to work around games checking that the DSP event has been signaled by a real DSP interrupt.
* More services & small clean upsGravatar purpasmart962014-12-25
|
* License changeGravatar purpasmart962014-12-20
|
* Remove SyncRequest from K::Object and create a new K::Session typeGravatar Yuri Kunde Schlesner2014-12-15
| | | | | | | 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.)
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-13
|
* DSP: Added stub for ReadPipeIfPossible.Gravatar bunnei2014-12-12
|
* Add stub for ConvertProcessFromDspDramGravatar archshift2014-12-03
| | | | Should theoretically push retail stuff further along
* DSP: Added stubs for several commonly used DSP service functions.Gravatar bunnei2014-11-30
|
* Add more services and some fixes, along with more "override"Gravatar purpasmart962014-11-20
| | | | in the service's headers
* Added a bunch of servicesGravatar purpasmart962014-11-01