Module Name:    src
Committed By:   uebayasi
Date:           Thu May 22 14:38:38 UTC 2014

Modified Files:
        src/lib/libc/arch/x86_64: SYS.h

Log Message:
Put missing END() markers to set ELF symbol size.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/lib/libc/arch/x86_64/SYS.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/arch/x86_64/SYS.h
diff -u src/lib/libc/arch/x86_64/SYS.h:1.11 src/lib/libc/arch/x86_64/SYS.h:1.12
--- src/lib/libc/arch/x86_64/SYS.h:1.11	Fri Nov 18 20:43:01 2011
+++ src/lib/libc/arch/x86_64/SYS.h	Thu May 22 14:38:38 2014
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  *
  *	from: @(#)SYS.h	5.5 (Berkeley) 5/7/91
- *	$NetBSD: SYS.h,v 1.11 2011/11/18 20:43:01 joerg Exp $
+ *	$NetBSD: SYS.h,v 1.12 2014/05/22 14:38:38 uebayasi Exp $
  */
 
 #include <machine/asm.h>
@@ -66,13 +66,15 @@
 
 #define PSEUDO_NOERROR(x,y)						\
 	_SYSCALL_NOERROR(x,y);						\
-	ret
+	ret;								\
+	END(x)
 
 #define PSEUDO(x,y)							\
 	_SYSCALL_NOERROR(x,y);						\
 	jc 2f;								\
 	ret;								\
-	2: _SYSCALL_ERR
+	2: _SYSCALL_ERR;						\
+	END(x)
 
 #define RSYSCALL_NOERROR(x)						\
 	PSEUDO_NOERROR(x,x)

Reply via email to