svn commit: r217107 - in head/lib/libthr/arch: amd64/amd64 i386/i386

Konstantin Belousov kib at FreeBSD.org
Fri Jan 7 16:09:34 UTC 2011


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


More information about the svn-src-all mailing list