summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/server_port.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-01-04Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Subv1-2/+2
This will be useful when implementing mutex priority inheritance.
2016-12-05Split SessionRequestHandler::HandleSyncRequest into HandleSyncRequest, TranslateRequest and HandleSyncRequestImpl.Subv1-0/+1
HandleSyncRequest now takes care of calling the command buffer translate function before actually invoking the command handler for HLE services.
2016-12-05KServerPorts now have an HLE handler "template", which is inherited by all ServerSessions created from it.Subv1-1/+12
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-2/+0
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-19Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner1-2/+2
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-6/+14
2016-06-11Kernel/SVC: Implemented svcCreatePort.Subv1-1/+4
2016-06-05Kernel: Added ClientPort and ServerPort classes.Subv1-0/+43
This is part of an ongoing effort to implement support for multiple processes.