libthr: Add missing END() directive for umtx_op_err (amd64)
Like r353929, related to D22122. No functional change. Reviewed by: emaste, kib (earlier version both)
This commit is contained in:
parent
3a3f11c990
commit
3866b27a9c
@ -29,8 +29,11 @@
|
||||
#include <sys/syscall.h>
|
||||
#include <machine/asm.h>
|
||||
|
||||
#define RSYSCALL_ERR(x) ENTRY(__CONCAT(x, _err)); \
|
||||
mov __CONCAT($SYS_,x),%rax; KERNCALL; ret;
|
||||
#define RSYSCALL_ERR(x) ENTRY(__CONCAT(x, _err)); \
|
||||
mov __CONCAT($SYS_,x),%rax; \
|
||||
KERNCALL; \
|
||||
ret; \
|
||||
END(__CONCAT(x, _err));
|
||||
|
||||
#define KERNCALL movq %rcx, %r10; syscall
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user