diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-04 05:20:58 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-04 05:20:58 +0100 |
| commit | d62341f615974257eac4125ab68be519efcf0a6e (patch) | |
| tree | a68661ff4108eb294e06c16319b8f938e3b2ff3a /dev/Kernel/src/HardwareThreadScheduler.cc | |
| parent | fe61c5e33bd2a739885f3f7edc3c0c0798f918c7 (diff) | |
CHORE&FEAT: Kernel/SCI: Lots of Chore and feat, see below.
- Add traits for CmdListEntry in GPU's SCI. (GPU.h)
- Set standard user directory as /user/ instead of /usr/. (User.cc/User.h)
- Replace fSourcePid with fPID. (HardwareThreadScheduler.cc/HardwareThreadScheduler.h)
Diffstat (limited to 'dev/Kernel/src/HardwareThreadScheduler.cc')
| -rw-r--r-- | dev/Kernel/src/HardwareThreadScheduler.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/Kernel/src/HardwareThreadScheduler.cc b/dev/Kernel/src/HardwareThreadScheduler.cc index 0ca09ddf..70502d40 100644 --- a/dev/Kernel/src/HardwareThreadScheduler.cc +++ b/dev/Kernel/src/HardwareThreadScheduler.cc @@ -117,13 +117,13 @@ namespace NeOS if (this->IsBusy()) return NO; - this->fStack = frame; - this->fSourcePID = pid; + this->fStack = frame; + this->fPID = pid; this->fStack->BP = reinterpret_cast<UIntPtr>(image_ptr); this->fStack->SP = reinterpret_cast<UIntPtr>(stack_ptr); - Bool ret = mp_register_process(fStack, this->fSourcePID); + Bool ret = mp_register_process(fStack, this->fPID); if (ret) this->Busy(YES); |
