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
bfdd874b
There was an error fetching the commit references. Please try again later.
Commit
bfdd874b
authored
10 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
Thread: Moved position of * in arguments.
parent
12e2a595
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/hle/kernel/thread.cpp
+2
-2
2 additions, 2 deletions
src/core/hle/kernel/thread.cpp
with
2 additions
and
2 deletions
src/core/hle/kernel/thread.cpp
+
2
−
2
View file @
bfdd874b
...
...
@@ -145,7 +145,7 @@ void ChangeReadyState(Thread* t, bool ready) {
/// Verify that a thread has not been released from waiting
inline
bool
VerifyWait
(
const
Handle
&
thread
,
WaitType
type
,
Handle
handle
)
{
Handle
wait_id
=
0
;
Thread
*
t
=
g_object_pool
.
GetFast
<
Thread
>
(
thread
);
Thread
*
t
=
g_object_pool
.
GetFast
<
Thread
>
(
thread
);
if
(
t
!=
nullptr
&&
type
==
t
->
wait_type
&&
handle
==
t
->
wait_handle
)
{
return
true
;
}
else
{
...
...
@@ -158,7 +158,7 @@ inline bool VerifyWait(const Handle& thread, WaitType type, Handle handle) {
/// Stops the current thread
void
StopThread
(
Handle
thread
,
const
char
*
reason
)
{
u32
error
;
Thread
*
t
=
g_object_pool
.
Get
<
Thread
>
(
thread
,
error
);
Thread
*
t
=
g_object_pool
.
Get
<
Thread
>
(
thread
,
error
);
if
(
t
)
{
ChangeReadyState
(
t
,
false
);
t
->
status
=
THREADSTATUS_DORMANT
;
...
...
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