yuzu/src/core/hle/kernel
Yuri Kunde Schlesner 84c497292a Service: Add new ServiceFramework framework for writing HLE services
The old "Interface" class had a few problems such as using free
functions (Which didn't allow you to write the service handler as if it
were a regular class.) which weren't very extensible. (Only received one
parameter with a pointer to the Interface object.)

The new ServiceFramework aims to solve these problems by working with
member functions and passing a generic context struct as parameter. This
struct can be extended in the future without having to update all
existing service implementations.
2017-06-08 00:11:37 -07:00
..
address_arbiter.cpp Kernel: Centralize error definitions in errors.h 2017-05-24 21:06:00 -07:00
address_arbiter.h Kernel: Move HandleTable to a separate file 2017-05-29 17:34:39 -07:00
client_port.cpp Kernel: Add a dedicated SetHleHandler method to ServerPort/ServerSession 2017-06-06 02:56:32 -07:00
client_port.h Kernel: Move HandleTable to a separate file 2017-05-29 17:34:39 -07:00
client_session.cpp HLE: Move SessionRequestHandler from Service:: to Kernel:: 2017-06-05 23:40:11 -07:00
client_session.h Kernel: Move HandleTable to a separate file 2017-05-29 17:34:39 -07:00
errors.h Kernel: Centralize error definitions in errors.h 2017-05-24 21:06:00 -07:00
event.cpp Merge pull request #2397 from Subv/pulse 2017-01-10 10:45:00 -05:00
event.h Kernel: Move WaitObject to a separate file 2017-05-29 16:16:46 -07:00
handle_table.cpp Kernel: Move HandleTable to a separate file 2017-05-29 17:34:39 -07:00
handle_table.h Kernel: Move HandleTable to a separate file 2017-05-29 17:34:39 -07:00
hle_ipc.cpp Service: Add new ServiceFramework framework for writing HLE services 2017-06-08 00:11:37 -07:00
hle_ipc.h Service: Add new ServiceFramework framework for writing HLE services 2017-06-08 00:11:37 -07:00
kernel.cpp Kernel: Move HandleTable to a separate file 2017-05-29 17:34:39 -07:00
kernel.h Kernel: Move HandleTable to a separate file 2017-05-29 17:34:39 -07:00
memory.cpp Kernel: Move HandleTable to a separate file 2017-05-29 17:34:39 -07:00
memory.h Kernel: Map special regions according to ExHeader 2017-05-09 21:44:00 -07:00
mutex.cpp Kernel/Mutex: Propagate thread priority changes to other threads inheriting the priority via mutexes 2017-01-04 15:58:48 -05:00
mutex.h Kernel: Move WaitObject to a separate file 2017-05-29 16:16:46 -07:00
process.cpp Kernel: Centralize error definitions in errors.h 2017-05-24 21:06:00 -07:00
process.h Kernel: Map special regions according to ExHeader 2017-05-09 21:44:00 -07:00
resource_limit.cpp Kernel: Move HandleTable to a separate file 2017-05-29 17:34:39 -07:00
resource_limit.h Remove empty newlines in #include blocks. 2016-09-21 11:15:47 +09:00
semaphore.cpp Kernel: Centralize error definitions in errors.h 2017-05-24 21:06:00 -07:00
semaphore.h Kernel: Move HandleTable to a separate file 2017-05-29 17:34:39 -07:00
server_port.cpp Kernel: Add a dedicated SetHleHandler method to ServerPort/ServerSession 2017-06-06 02:56:32 -07:00
server_port.h Kernel: Add a dedicated SetHleHandler method to ServerPort/ServerSession 2017-06-06 02:56:32 -07:00
server_session.cpp Kernel: Add a dedicated SetHleHandler method to ServerPort/ServerSession 2017-06-06 02:56:32 -07:00
server_session.h Kernel: Add a dedicated SetHleHandler method to ServerPort/ServerSession 2017-06-06 02:56:32 -07:00
session.cpp Manually tweak source formatting and then re-run clang-format 2016-09-18 21:14:25 -07:00
session.h Kernel: Use a Session object to keep track of the status of a Client/Server session pair. 2017-05-15 11:22:15 -05:00
shared_memory.cpp Kernel: Centralize error definitions in errors.h 2017-05-24 21:06:00 -07:00
shared_memory.h Remove empty newlines in #include blocks. 2016-09-21 11:15:47 +09:00
thread.cpp Kernel: Move HandleTable to a separate file 2017-05-29 17:34:39 -07:00
thread.h Kernel: Move WaitObject to a separate file 2017-05-29 16:16:46 -07:00
timer.cpp Kernel: Move HandleTable to a separate file 2017-05-29 17:34:39 -07:00
timer.h Kernel: Move WaitObject to a separate file 2017-05-29 16:16:46 -07:00
vm_manager.cpp Kernel: Centralize error definitions in errors.h 2017-05-24 21:06:00 -07:00
vm_manager.h Kernel: Centralize error definitions in errors.h 2017-05-24 21:06:00 -07:00
wait_object.cpp Kernel: Move WaitObject to a separate file 2017-05-29 16:16:46 -07:00
wait_object.h Kernel: Move WaitObject to a separate file 2017-05-29 16:16:46 -07:00