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
5e2a8eba
There was an error fetching the commit references. Please try again later.
Commit
5e2a8eba
authored
8 years ago
by
Subv
Browse files
Options
Downloads
Patches
Plain Diff
Kernel: Remove some unused functions.
parent
f20d8726
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/hle/kernel/thread.cpp
+0
-23
0 additions, 23 deletions
src/core/hle/kernel/thread.cpp
src/core/hle/kernel/thread.h
+0
-9
0 additions, 9 deletions
src/core/hle/kernel/thread.h
with
0 additions
and
32 deletions
src/core/hle/kernel/thread.cpp
+
0
−
23
View file @
5e2a8eba
...
@@ -65,21 +65,6 @@ Thread* GetCurrentThread() {
...
@@ -65,21 +65,6 @@ Thread* GetCurrentThread() {
return
current_thread
.
get
();
return
current_thread
.
get
();
}
}
/**
* Check if a thread is waiting on the specified wait object
* @param thread The thread to test
* @param wait_object The object to test against
* @return True if the thread is waiting, false otherwise
*/
static
bool
CheckWait_WaitObject
(
const
Thread
*
thread
,
WaitObject
*
wait_object
)
{
if
(
thread
->
status
!=
THREADSTATUS_WAIT_SYNCH_ALL
&&
thread
->
status
!=
THREADSTATUS_WAIT_SYNCH_ANY
)
return
false
;
auto
itr
=
std
::
find
(
thread
->
wait_objects
.
begin
(),
thread
->
wait_objects
.
end
(),
wait_object
);
return
itr
!=
thread
->
wait_objects
.
end
();
}
/**
/**
* Check if the specified thread is waiting on the specified address to be arbitrated
* Check if the specified thread is waiting on the specified address to be arbitrated
* @param thread The thread to test
* @param thread The thread to test
...
@@ -249,14 +234,6 @@ void WaitCurrentThread_Sleep() {
...
@@ -249,14 +234,6 @@ void WaitCurrentThread_Sleep() {
thread
->
status
=
THREADSTATUS_WAIT_SLEEP
;
thread
->
status
=
THREADSTATUS_WAIT_SLEEP
;
}
}
void
WaitCurrentThread_WaitSynchronization
(
std
::
vector
<
SharedPtr
<
WaitObject
>>
wait_objects
,
bool
wait_set_output
)
{
Thread
*
thread
=
GetCurrentThread
();
thread
->
wait_set_output
=
wait_set_output
;
thread
->
wait_objects
=
std
::
move
(
wait_objects
);
thread
->
status
=
THREADSTATUS_WAIT_SYNCH_ANY
;
}
void
WaitCurrentThread_ArbitrateAddress
(
VAddr
wait_address
)
{
void
WaitCurrentThread_ArbitrateAddress
(
VAddr
wait_address
)
{
Thread
*
thread
=
GetCurrentThread
();
Thread
*
thread
=
GetCurrentThread
();
thread
->
wait_address
=
wait_address
;
thread
->
wait_address
=
wait_address
;
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/kernel/thread.h
+
0
−
9
View file @
5e2a8eba
...
@@ -245,15 +245,6 @@ Thread* GetCurrentThread();
...
@@ -245,15 +245,6 @@ Thread* GetCurrentThread();
*/
*/
void
WaitCurrentThread_Sleep
();
void
WaitCurrentThread_Sleep
();
/**
* Waits the current thread from a WaitSynchronization call
* @param wait_objects Kernel objects that we are waiting on
* @param wait_set_output If true, set the output parameter on thread wakeup (for
* WaitSynchronizationN only)
*/
void
WaitCurrentThread_WaitSynchronization
(
std
::
vector
<
SharedPtr
<
WaitObject
>>
wait_objects
,
bool
wait_set_output
);
/**
/**
* Waits the current thread from an ArbitrateAddress call
* Waits the current thread from an ArbitrateAddress call
* @param wait_address Arbitration address used to resume from wait
* @param wait_address Arbitration address used to resume from wait
...
...
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