index
:
anonymous/yuzu
master
yuzu is the world's most popular, open-source, Nintendo Switch emulator — started by the creators of Citra. It is written in C++ with portability in mind,
mirror
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
core
/
hle
/
kernel
/
hle_ipc.cpp
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)
bunnei
2019-11-25
1
-9
/
+11
*
kernel: events: Remove ResetType::Automatic.
bunnei
2019-11-03
1
-2
/
+1
*
Merge pull request #2489 from FearlessTobi/port-4716
bunnei
2019-05-25
1
-3
/
+4
|
\
|
*
Address review comment
Tobias
2019-05-19
1
-1
/
+1
|
*
HLE/IPC: HLEContext can memorize the client thread and use it for SleepClientThread
Weiyi Wang
2019-05-18
1
-3
/
+4
*
|
core/kernel/object: Rename ResetType enum members
Lioncash
2019-05-18
1
-1
/
+1
|
/
*
kernel/hle_ipc: Convert std::shared_ptr IPC header instances to std::optional
Lioncash
2019-03-08
1
-8
/
+6
*
kernel/server_session: Make data members private
Lioncash
2019-03-06
1
-4
/
+4
*
core/kernel: Remove unnecessary inclusions
Lioncash
2019-01-01
1
-0
/
+5
*
hle_ipc: Refactor SleepClientThread to avoid ReadableEvent
Zach Hilman
2018-11-29
1
-3
/
+3
*
kernel/event: Reference ReadableEvent from WritableEvent
Zach Hilman
2018-11-29
1
-2
/
+4
*
hle_ipc: Use event pair for SleepClientThread
Zach Hilman
2018-11-29
1
-14
/
+13
*
kernel/process: Make the handle table per-process
Lioncash
2018-10-20
1
-13
/
+12
*
kernel/thread: Make all instance variables private
Lioncash
2018-10-04
1
-7
/
+7
*
Port #4182 from Citra: "Prefix all size_t with std::"
fearlessTobi
2018-09-15
1
-13
/
+14
*
core/core: Replace includes with forward declarations where applicable
Lioncash
2018-08-31
1
-0
/
+1
*
kernel: Eliminate kernel global state
Lioncash
2018-08-29
1
-5
/
+12
*
hle_ipc: Make WriteToOutgoingCommandBuffer()'s reference parameter const
Lioncash
2018-08-09
1
-1
/
+1
*
kernel: Move object class to its own source files
Lioncash
2018-08-02
1
-1
/
+5
*
kernel: Remove unnecessary includes
Lioncash
2018-07-31
1
-0
/
+1
*
thread: Convert ThreadStatus into an enum class
Lioncash
2018-07-20
1
-2
/
+2
*
hle_ipc: Introduce generic WriteBuffer overload for multiple container types
Lioncash
2018-07-19
1
-4
/
+0
*
hle_ipc: Amend usage of buffer_index within one of HLERequestContext's WriteBuffer() overloads
Lioncash
2018-07-19
1
-1
/
+1
*
core/memory, core/hle/kernel: Use std::move where applicable
Lioncash
2018-07-19
1
-2
/
+4
*
nvflinger: Fix for BufferQueue event handling.
bunnei
2018-07-17
1
-2
/
+8
*
No need to use ASSERT_MSG with an empty message
David Marcec
2018-07-14
1
-2
/
+2
*
Update clang format
James Rowe
2018-07-03
1
-1
/
+1
*
Rename logging macro back to LOG_*
James Rowe
2018-07-03
1
-3
/
+3
*
IPC: skip empty buffer write
mailwl
2018-06-22
1
-0
/
+5
*
Added RequestWithContext & ControlWithContext
David Marcec
2018-05-17
1
-1
/
+3
*
GetSharedFontInOrderOfPriority (#381)
David
2018-05-01
1
-18
/
+22
*
kernel: Migrate logging macros to fmt-compatible ones
Lioncash
2018-04-26
1
-2
/
+3
*
hle_ipc, fsp_srv: Cleanup logging.
bunnei
2018-04-01
1
-1
/
+1
*
hle_ipc: Do not ensure write buffer size.
bunnei
2018-03-31
1
-2
/
+5
*
Clean Warnings (?)
N00byKing
2018-03-19
1
-1
/
+1
*
hle_ipc: Add SleepClientThread to block current thread within HLE routines.
bunnei
2018-03-19
1
-0
/
+27
*
hle_ipc: Use shared_ptr instead of unique_ptr to allow copies.
bunnei
2018-03-19
1
-4
/
+4
*
hle_ipc: Remove GetPointer(..) usage with WriteToOutgoingCommandBuffer.
bunnei
2018-03-19
1
-3
/
+11
*
Add warning if Domain request has no domain message header
mailwl
2018-02-20
1
-0
/
+3
*
Fix: change check for domain order and existance of domain message header
mailwl
2018-02-20
1
-1
/
+1
*
IPC: add domain header to response if only it exists in request
mailwl
2018-02-20
1
-4
/
+6
*
Service/hid: stub some functions
mailwl
2018-02-16
1
-0
/
+51
*
hle_ipc: Remove const from WriteBuffer size.
bunnei
2018-02-14
1
-1
/
+1
*
hle_ipc: Add GetReadBufferSize and check write buffer size.
bunnei
2018-02-14
1
-0
/
+7
*
hle_ipc: Add helper functions for reading and writing buffers.
bunnei
2018-02-14
1
-4
/
+2
*
hle_ipc: Add helper functions for reading and writing buffers.
bunnei
2018-02-14
1
-0
/
+39
*
hle: Integrate Domain handling into ServerSession.
bunnei
2018-01-25
1
-7
/
+3
*
hle: Remove Domain and SyncObject kernel objects.
bunnei
2018-01-25
1
-1
/
+0
*
Format: Run the new clang format on everything
James Rowe
2018-01-21
1
-3
/
+2
*
Fixes some cast warnings, partial port of citra #3064 (#106)
River City Ransomware
2018-01-20
1
-1
/
+1
*
Stub PopLaunchParameter and implement Buffer C Descriptors reading on hle_ipc (#96)
gdkchan
2018-01-18
1
-7
/
+27
*
hle_ipc: Clang format.
bunnei
2018-01-17
1
-2
/
+3
*
ipc: Implement domain command CloseVirtualHandle.
bunnei
2018-01-17
1
-1
/
+8
*
yuzu: Update license text to be consistent across project.
bunnei
2018-01-13
1
-1
/
+1
*
IPC: Corrected some definitions for the buffer C descriptor flags.
Subv
2018-01-11
1
-1
/
+4
*
IPC: Add functions to read the input move/copy objects from an IPC request.
Subv
2018-01-07
1
-2
/
+14
*
IPC: Don't attempt to read the command buffer if it holds a Close request.
Subv
2018-01-07
1
-0
/
+5
*
IPC Cleanup: Remove 3DS-specific code and translate copy, move and domain objects in IPC requests.
Subv
2018-01-07
1
-52
/
+55
*
IPC: Skip the entire u64 of the command id when receiving an IPC request.
Subv
2018-01-07
1
-1
/
+2
*
IPC: Use the correct size when pushing raw data to the command buffer and fixed pushing domain objects.
Subv
2018-01-07
1
-1
/
+1
*
kernel: Fix implementation of ConvertSessionToDomain.
bunnei
2017-12-29
1
-13
/
+17
*
hle_ipc: Only copy necessary fields for outgoing command buffer.
bunnei
2017-10-19
1
-1
/
+1
*
hle_ipc: Parse out buffer X/A/B/B descriptors from incoming command buffer.
bunnei
2017-10-19
1
-14
/
+11
*
hle: Implement ConvertSessionToDomain, various cleanups.
bunnei
2017-10-15
1
-4
/
+19
*
hle: Initial implementation of NX service framework and IPC.
bunnei
2017-10-15
1
-68
/
+84
*
Fixed type conversion ambiguity
Huw Pascoe
2017-09-30
1
-1
/
+1
*
Kernel/IPC: Support translation of null handles
Yuri Kunde Schlesner
2017-06-21
1
-7
/
+12
*
Kernel/IPC: Make HLERequestContext usable from outside kernel
Yuri Kunde Schlesner
2017-06-19
1
-0
/
+5
*
Kernel: Allow clearing request_objects to re-use buffer space
Yuri Kunde Schlesner
2017-06-11
1
-0
/
+4
*
Kernel: Basic support for IPC translation for HLE services
Yuri Kunde Schlesner
2017-06-11
1
-4
/
+90
*
Kernel: Add methods in HLERequestContext abstracting handle creation
Yuri Kunde Schlesner
2017-06-11
1
-0
/
+9
*
Service: Add new ServiceFramework framework for writing HLE services
Yuri Kunde Schlesner
2017-06-08
1
-0
/
+2
*
Kernel: Add a dedicated SetHleHandler method to ServerPort/ServerSession
Yuri Kunde Schlesner
2017-06-06
1
-0
/
+2
*
HLE: Move SessionRequestHandler from Service:: to Kernel::
Yuri Kunde Schlesner
2017-06-06
1
-0
/
+22