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
60078baa
There was an error fetching the commit references. Please try again later.
Commit
60078baa
authored
10 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
AddressArbiter: Fixed bug with break statements missing from case statements.
parent
1b247b80
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/hle/kernel/address_arbiter.cpp
+2
-0
2 additions, 0 deletions
src/core/hle/kernel/address_arbiter.cpp
with
2 additions
and
0 deletions
src/core/hle/kernel/address_arbiter.cpp
+
2
−
0
View file @
60078baa
...
@@ -54,6 +54,7 @@ Result ArbitrateAddress(Handle handle, ArbitrationType type, u32 address, s32 va
...
@@ -54,6 +54,7 @@ Result ArbitrateAddress(Handle handle, ArbitrationType type, u32 address, s32 va
ArbitrateHighestPriorityThread
(
handle
,
address
);
ArbitrateHighestPriorityThread
(
handle
,
address
);
}
}
HLE
::
Reschedule
(
__func__
);
HLE
::
Reschedule
(
__func__
);
break
;
// Wait current thread (acquire the arbiter)...
// Wait current thread (acquire the arbiter)...
case
ArbitrationType
::
WaitIfLessThan
:
case
ArbitrationType
::
WaitIfLessThan
:
...
@@ -61,6 +62,7 @@ Result ArbitrateAddress(Handle handle, ArbitrationType type, u32 address, s32 va
...
@@ -61,6 +62,7 @@ Result ArbitrateAddress(Handle handle, ArbitrationType type, u32 address, s32 va
Kernel
::
WaitCurrentThread
(
WAITTYPE_ARB
,
handle
);
Kernel
::
WaitCurrentThread
(
WAITTYPE_ARB
,
handle
);
HLE
::
Reschedule
(
__func__
);
HLE
::
Reschedule
(
__func__
);
}
}
break
;
default
:
default
:
ERROR_LOG
(
KERNEL
,
"unknown type=%d"
,
type
);
ERROR_LOG
(
KERNEL
,
"unknown type=%d"
,
type
);
...
...
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