Date: Mon, 15 Aug 2011 03:54:51 +0000 From: xxp@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r225121 - soc2011/xxp/xxp-head/lib/libthr/arch/i386/i386 Message-ID: <20110815035451.E2A1F106564A@hub.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: xxp Date: Mon Aug 15 03:54:51 2011 New Revision: 225121 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=225121 Log: fix _umtx_op_err.S Modified: soc2011/xxp/xxp-head/lib/libthr/arch/i386/i386/_umtx_op_err.S Modified: soc2011/xxp/xxp-head/lib/libthr/arch/i386/i386/_umtx_op_err.S ============================================================================== --- soc2011/xxp/xxp-head/lib/libthr/arch/i386/i386/_umtx_op_err.S Mon Aug 15 00:38:14 2011 (r225120) +++ soc2011/xxp/xxp-head/lib/libthr/arch/i386/i386/_umtx_op_err.S Mon Aug 15 03:54:51 2011 (r225121) @@ -31,7 +31,8 @@ #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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20110815035451.E2A1F106564A>