mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 21:05:45 +00:00
hle: kernel: Process: Various style fixes based on code review feedback.
This commit is contained in:
parent
cf7a66a3cc
commit
144e143a40
1 changed files with 2 additions and 2 deletions
|
@ -217,12 +217,12 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Gets the process schedule count, used for thread yelding
|
/// Gets the process schedule count, used for thread yelding
|
||||||
constexpr s64 GetScheduledCount() const {
|
s64 GetScheduledCount() const {
|
||||||
return schedule_count;
|
return schedule_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Increments the process schedule count, used for thread yielding.
|
/// Increments the process schedule count, used for thread yielding.
|
||||||
constexpr void IncrementScheduledCount() {
|
void IncrementScheduledCount() {
|
||||||
++schedule_count;
|
++schedule_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue