Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
ab86b80c
There was an error fetching the commit references. Please try again later.
Commit
ab86b80c
authored
7 years ago
by
Subv
Committed by
bunnei
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
IPC: Corrected some definitions for the buffer C descriptor flags.
parent
ba02f0de
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/core/hle/ipc.h
+2
-2
2 additions, 2 deletions
src/core/hle/ipc.h
src/core/hle/kernel/hle_ipc.cpp
+4
-1
4 additions, 1 deletion
src/core/hle/kernel/hle_ipc.cpp
src/core/hle/kernel/hle_ipc.h
+4
-0
4 additions, 0 deletions
src/core/hle/kernel/hle_ipc.h
with
10 additions
and
3 deletions
src/core/hle/ipc.h
+
2
−
2
View file @
ab86b80c
...
...
@@ -48,8 +48,8 @@ struct CommandHeader {
enum
class
BufferDescriptorCFlag
:
u32
{
Disabled
=
0
,
No
Descriptor
=
1
,
Two
Desciptor
s
=
2
,
Inline
Descriptor
=
1
,
One
Desc
r
iptor
=
2
,
};
union
{
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/kernel/hle_ipc.cpp
+
4
−
1
View file @
ab86b80c
...
...
@@ -83,7 +83,10 @@ void HLERequestContext::ParseCommandBuffer(u32_le* src_cmdbuf, bool incoming) {
}
if
(
command_header
->
buf_c_descriptor_flags
!=
IPC
::
CommandHeader
::
BufferDescriptorCFlag
::
Disabled
)
{
UNIMPLEMENTED
();
if
(
command_header
->
buf_c_descriptor_flags
!=
IPC
::
CommandHeader
::
BufferDescriptorCFlag
::
OneDescriptor
)
{
UNIMPLEMENTED
();
}
}
// Padding to align to 16 bytes
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/kernel/hle_ipc.h
+
4
−
0
View file @
ab86b80c
...
...
@@ -139,6 +139,10 @@ public:
return
buffer_a_desciptors
;
}
const
std
::
vector
<
IPC
::
BufferDescriptorABW
>&
BufferDescriptorB
()
const
{
return
buffer_b_desciptors
;
}
const
std
::
unique_ptr
<
IPC
::
DomainMessageHeader
>&
GetDomainMessageHeader
()
const
{
return
domain_message_header
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment