From owner-svn-soc-all@FreeBSD.ORG Mon Aug 15 03:54:52 2011 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id E2A1F106564A for ; Mon, 15 Aug 2011 03:54:51 +0000 (UTC) (envelope-from xxp@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Mon, 15 Aug 2011 03:54:51 +0000 Date: Mon, 15 Aug 2011 03:54:51 +0000 From: xxp@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20110815035451.E2A1F106564A@hub.freebsd.org> Cc: Subject: socsvn commit: r225121 - soc2011/xxp/xxp-head/lib/libthr/arch/i386/i386 X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Aug 2011 03:54:53 -0000 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)