Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Jan 2011 16:09:34 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r217107 - in head/lib/libthr/arch: amd64/amd64 i386/i386
Message-ID:  <201101071609.p07G9Y9P057952@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Fri Jan  7 16:09:33 2011
New Revision: 217107
URL: http://svn.freebsd.org/changeset/base/217107

Log:
  Add section .note.GNU-stack for assembly files used by 386 and amd64.

Modified:
  head/lib/libthr/arch/amd64/amd64/_umtx_op_err.S
  head/lib/libthr/arch/i386/i386/_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	Fri Jan  7 16:08:40 2011	(r217106)
+++ head/lib/libthr/arch/amd64/amd64/_umtx_op_err.S	Fri Jan  7 16:09:33 2011	(r217107)
@@ -35,3 +35,5 @@
 #define KERNCALL	movq %rcx, %r10; syscall
 
 RSYSCALL_ERR(_umtx_op)
+
+	.section .note.GNU-stack,"",%progbits

Modified: head/lib/libthr/arch/i386/i386/_umtx_op_err.S
==============================================================================
--- head/lib/libthr/arch/i386/i386/_umtx_op_err.S	Fri Jan  7 16:08:40 2011	(r217106)
+++ head/lib/libthr/arch/i386/i386/_umtx_op_err.S	Fri Jan  7 16:09:33 2011	(r217107)
@@ -34,3 +34,5 @@
 			mov __CONCAT($SYS_,x),%eax; int $0x80; ret
 
 SYSCALL_ERR(_umtx_op)
+
+	.section .note.GNU-stack,"",%progbits



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201101071609.p07G9Y9P057952>