mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 08:24:32 -08:00
Use uintptr_t instead of addr_t
They're never actually going to change independently, and it's also brining in kutil headers more places than they should be.
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#include "kutil/memory.h"
|
||||
|
||||
struct cpu_state;
|
||||
|
||||
@@ -17,5 +16,5 @@ enum class syscall : uint64_t
|
||||
};
|
||||
|
||||
void syscall_enable();
|
||||
addr_t syscall_dispatch(addr_t, const cpu_state &);
|
||||
uintptr_t syscall_dispatch(uintptr_t, const cpu_state &);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user