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:
Conrad Meyer 2019-10-23 18:27:30 +00:00
parent 2f81c92e55
commit 5ffc069a3a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=353958

View File

@ -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