aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/semaphore.h
Commit message (Collapse)AuthorAge
* Explicitly instantiate constructors/destructors for Kernel objectsGravatar Yuri Kunde Schlesner2015-02-02
| | | | | | This should speed up compile times a bit, as well as enable more liberal use of forward declarations. (Due to SharedPtr not trying to emit the destructor anymore.)
* Kernel: Mark all appropriate kernel objects as "final"Gravatar Yuri Kunde Schlesner2015-01-30
|
* Kernel: Convert Semaphore to not use HandlesGravatar Yuri Kunde Schlesner2015-01-30
|
* Merge pull request #291 from purpasmart96/licenseGravatar bunnei2014-12-21
|\ | | | | License change
| * License changeGravatar purpasmart962014-12-20
| |
* | Clean up some warningsGravatar Chin2014-12-20
|/
* Kernel/Semaphores: Addressed some issues.Gravatar Subv2014-12-13
|
* Semaphore: Implemented the initial_count parameter.Gravatar Subv2014-12-13
|
* SVC: Implemented ReleaseSemaphore.Gravatar Subv2014-12-13
| | | | This behavior was tested on hardware, however i'm still not sure what use the "initial_count" parameter has
* SVC: Implemented svcCreateSemaphoreGravatar Subv2014-12-13
ToDo: Implement svcReleaseSemaphore * Some testing against hardware needed