diff options
author | Marvin Borner | 2021-04-02 13:55:25 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-02 13:55:25 +0200 |
commit | d055495f3dbb62f74809d31a84621d6e86d61d0a (patch) | |
tree | 38d39fd8ae20cec29221264e8394586cc509547c /libs/libc/inc | |
parent | 3e81b8a254485de532d46c9a0710be97879d0605 (diff) |
Fixed serious race condition exploits
Diffstat (limited to 'libs/libc/inc')
-rw-r--r-- | libs/libc/inc/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libc/inc/cpu.h b/libs/libc/inc/cpu.h index 52e5571..4c6e721 100644 --- a/libs/libc/inc/cpu.h +++ b/libs/libc/inc/cpu.h @@ -14,7 +14,7 @@ void outb(u16 port, u8 data); void outw(u16 port, u16 data); void outl(u16 port, u32 data); -static inline void spinlock(u8 *ptr) +static inline void spinlock(u32 *ptr) { u32 prev; do |