diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-09-02 17:30:15 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-09-02 17:30:15 +0200 |
| commit | e47e393fc01c663ca634068c56a41eb74ed01439 (patch) | |
| tree | 3f2e313834295db3d18b93bbe539126097496183 /dev/ZKA/Sources/CodeManager.cxx | |
| parent | b3888ff9e2c18da6b73a57f453f7ad36fea61b7b (diff) | |
[ FIX ] A fix has been found for the SYSRET issue. Will apply it later.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKA/Sources/CodeManager.cxx')
| -rw-r--r-- | dev/ZKA/Sources/CodeManager.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/ZKA/Sources/CodeManager.cxx b/dev/ZKA/Sources/CodeManager.cxx index 5f634539..f01bf41c 100644 --- a/dev/ZKA/Sources/CodeManager.cxx +++ b/dev/ZKA/Sources/CodeManager.cxx @@ -20,7 +20,7 @@ namespace Kernel return false; UserProcess proc; - proc.SetEntrypoint(reinterpret_cast<VoidPtr>(main)); + proc.SetImageStart(reinterpret_cast<VoidPtr>(main)); proc.Kind = UserProcess::kExeKind; proc.StackSize = mib_cast(1); |
