.. |
address_arbiter.cpp
|
HLE/AddressArbiter: Remove threads that were awoken by timeout from the arbiter's waitlist when using WaitIfLessThanWithTimeout and DecrementAndWaitIfLessThanWithTimeout.
|
2017-12-06 09:06:45 -05:00 |
address_arbiter.h
|
Kernel/Arbiters: When doing ArbitrateAddress(Signal), always pick the highest priority thread, using the first one that was put to sleep if more than one thread with the same highest priority exists.
|
2017-11-08 18:47:08 -05:00 |
client_port.cpp
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
client_port.h
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
client_session.cpp
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
client_session.h
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
errors.h
|
Kernel/IPC: Added a function to translate the IPC command buffer from one process to another.
|
2017-11-06 10:46:12 -05:00 |
event.cpp
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
event.h
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
handle_table.cpp
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
handle_table.h
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
hle_ipc.cpp
|
Fix wrongly converted specifiers
|
2018-03-27 23:37:36 +08:00 |
hle_ipc.h
|
GSP_GPU: Release the GPU right if the active session closes the gsp_gpu session
|
2018-03-01 14:54:38 +01:00 |
ipc.cpp
|
Fix wrongly converted specifiers
|
2018-03-27 23:37:36 +08:00 |
ipc.h
|
Kernel/IPC: Partially implement MappedBuffer translation.
|
2018-01-23 08:27:00 -05:00 |
kernel.cpp
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
kernel.h
|
Merge pull request #2839 from Subv/global_kernel_lock
|
2017-08-23 18:17:44 -06:00 |
memory.cpp
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
memory.h
|
Kernel/Memory: Changed GetPhysicalPointer so that it doesn't go through the current process' page table to obtain a pointer.
|
2017-09-15 14:26:13 -05:00 |
mutex.cpp
|
remove trailing spaces
|
2017-11-06 13:57:06 +02:00 |
mutex.h
|
Kernel/SVC: Don't let svcReleaseMutex release a mutex owned by another thread.
|
2017-11-04 10:05:18 -05:00 |
process.cpp
|
Kernel/SVC: Partially implemented svcExitProcess.
|
2017-12-15 15:47:33 -05:00 |
process.h
|
Kernel/SVC: Partially implemented svcExitProcess.
|
2017-12-15 15:47:33 -05:00 |
resource_limit.cpp
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
resource_limit.h
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
semaphore.cpp
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
semaphore.h
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
server_port.cpp
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
server_port.h
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
server_session.cpp
|
Kernel/IPC: Use 39 microseconds for the SendSyncRequest delay approximation.
|
2017-12-10 13:00:05 -05:00 |
server_session.h
|
Debugging: Implement GetName for Kernel::ServerSession.
|
2017-11-06 10:47:06 -05:00 |
session.cpp
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
session.h
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
shared_memory.cpp
|
Kernel/SharedMemory: Don't take over and unmap the source memory block when creating a shared memory, just reference it.
|
2017-10-02 15:16:16 -05:00 |
shared_memory.h
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
svc.cpp
|
Fix wrongly converted specifiers
|
2018-03-27 23:37:36 +08:00 |
svc.h
|
HLE: Move SVC handlers to the Kernel namespace
|
2017-12-09 20:32:58 -08:00 |
thread.cpp
|
Replace format specifiers for all usages of ASSERT_MSG
|
2018-03-27 23:28:42 +08:00 |
thread.h
|
core/arm: Backend-specific context implementations
|
2017-12-12 19:12:03 +00:00 |
timer.cpp
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
timer.h
|
Update the entire application to use the new clang format style
|
2018-03-09 10:54:43 -07:00 |
vm_manager.cpp
|
Fix formatting mistakes
|
2018-03-28 22:28:55 +08:00 |
vm_manager.h
|
Merge pull request #3136 from Subv/mem_aliasing1
|
2018-01-24 10:17:25 +01:00 |
wait_object.cpp
|
Kernel/Threads: Add a new thread status that will allow using a Kernel::Event to put a guest thread to sleep inside an HLE handler until said event is signaled.
|
2017-09-30 11:16:49 -05:00 |
wait_object.h
|
Kernel: Move WaitObject to a separate file
|
2017-05-29 16:16:46 -07:00 |