Merge pull request #2314 from lioncash/const
kernel/thread: Minor interface cleanup
This commit is contained in:
commit
74a4a50470
11 changed files with 18 additions and 18 deletions
|
@ -257,7 +257,7 @@ void Process::Acquire(Thread* thread) {
|
|||
ASSERT_MSG(!ShouldWait(thread), "Object unavailable!");
|
||||
}
|
||||
|
||||
bool Process::ShouldWait(Thread* thread) const {
|
||||
bool Process::ShouldWait(const Thread* thread) const {
|
||||
return !is_signaled;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue