mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
LibC: Oops, setjmp() and longjmp() were not exported.
This commit is contained in:
parent
37ab7b7a8c
commit
3ebbefd916
Notes:
sideshowbarker
2024-07-19 15:55:02 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/3ebbefd916c
@ -3,7 +3,8 @@
|
||||
#include <Kernel/Syscall.h>
|
||||
|
||||
asm(
|
||||
"setjmp:\n\
|
||||
".globl setjmp\n\
|
||||
setjmp:\n\
|
||||
movl %ebx, 0(%eax)\n\
|
||||
movl %esi, 4(%eax)\n\
|
||||
movl %edi, 8(%eax)\n\
|
||||
@ -16,7 +17,8 @@ asm(
|
||||
");
|
||||
|
||||
asm(
|
||||
"longjmp:\n\
|
||||
".globl longjmp\n\
|
||||
longjmp:\n\
|
||||
xchgl %edx, %eax\n\
|
||||
test %eax, %eax\n\
|
||||
jnz 1f\n\
|
||||
|
Loading…
Reference in New Issue
Block a user