Date: Wed, 23 Oct 2019 18:27:30 +0000 (UTC) From: Conrad Meyer <cem@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r353958 - head/lib/libthr/arch/amd64/amd64 Message-ID: <201910231827.x9NIRU5V097239@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cem Date: Wed Oct 23 18:27:30 2019 New Revision: 353958 URL: https://svnweb.freebsd.org/changeset/base/353958 Log: 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) Modified: head/lib/libthr/arch/amd64/amd64/_umtx_op_err.S Modified: head/lib/libthr/arch/amd64/amd64/_umtx_op_err.S ============================================================================== --- head/lib/libthr/arch/amd64/amd64/_umtx_op_err.S Wed Oct 23 18:00:22 2019 (r353957) +++ head/lib/libthr/arch/amd64/amd64/_umtx_op_err.S Wed Oct 23 18:27:30 2019 (r353958) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910231827.x9NIRU5V097239>