diff options
| author | Conrad Meyer <cem@FreeBSD.org> | 2020-12-05 00:33:28 +0000 |
|---|---|---|
| committer | Conrad Meyer <cem@FreeBSD.org> | 2020-12-05 00:33:28 +0000 |
| commit | 78599c32efed3247d165302a1fbe8d9203e38974 (patch) | |
| tree | aaac03f469bc1e5e6145584338bb8ef7e3d55fd2 /lib/libthr | |
| parent | ac4dd4cd957016b9c5b7897f3c70efdd4e306407 (diff) | |
Notes
Diffstat (limited to 'lib/libthr')
| -rw-r--r-- | lib/libthr/arch/i386/i386/_umtx_op_err.S | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libthr/arch/i386/i386/_umtx_op_err.S b/lib/libthr/arch/i386/i386/_umtx_op_err.S index 113412c85100..dad6495132f7 100644 --- a/lib/libthr/arch/i386/i386/_umtx_op_err.S +++ b/lib/libthr/arch/i386/i386/_umtx_op_err.S @@ -31,7 +31,10 @@ #define SYSCALL_ERR(x) \ ENTRY(__CONCAT(x, _err)); \ - mov __CONCAT($SYS_,x),%eax; int $0x80; ret + mov __CONCAT($SYS_,x),%eax; \ + int $0x80; \ + ret; \ + END(__CONCAT(x, _err)) SYSCALL_ERR(_umtx_op) |
