svn commit: r332048 - in head/lib/libc: aarch64/sys amd64/sys arm/sys i386/sys riscv/sys
Brooks Davis
brooks at FreeBSD.org
Wed Apr 4 22:45:09 UTC 2018
Author: brooks
Date: Wed Apr 4 22:45:08 2018
New Revision: 332048
URL: https://svnweb.freebsd.org/changeset/base/332048
Log:
Remove architecture specific sigreturn.S files.
All of these files are identical (modulo license blocks and VCS IDs) to
the files generated by lib/libc/sys/Makefile.inc and serve no purpose.
Reported by: Ali Mashtizadeh <ali at mashtizadeh.com>
Reviewed by: kib
Sponsored by: DARPA, AFRL
Differential Revision: https://reviews.freebsd.org/D14953
Deleted:
head/lib/libc/aarch64/sys/sigreturn.S
head/lib/libc/amd64/sys/sigreturn.S
head/lib/libc/arm/sys/sigreturn.S
head/lib/libc/i386/sys/sigreturn.S
head/lib/libc/riscv/sys/sigreturn.S
Modified:
head/lib/libc/aarch64/sys/Makefile.inc
head/lib/libc/amd64/sys/Makefile.inc
head/lib/libc/arm/sys/Makefile.inc
head/lib/libc/i386/sys/Makefile.inc
head/lib/libc/riscv/sys/Makefile.inc
Modified: head/lib/libc/aarch64/sys/Makefile.inc
==============================================================================
--- head/lib/libc/aarch64/sys/Makefile.inc Wed Apr 4 21:31:12 2018 (r332047)
+++ head/lib/libc/aarch64/sys/Makefile.inc Wed Apr 4 22:45:08 2018 (r332048)
@@ -6,7 +6,6 @@ SRCS+= __vdso_gettc.c
MDASM= cerror.S \
shmat.S \
- sigreturn.S \
syscall.S \
vfork.S
Modified: head/lib/libc/amd64/sys/Makefile.inc
==============================================================================
--- head/lib/libc/amd64/sys/Makefile.inc Wed Apr 4 21:31:12 2018 (r332047)
+++ head/lib/libc/amd64/sys/Makefile.inc Wed Apr 4 22:45:08 2018 (r332048)
@@ -9,7 +9,7 @@ SRCS+= \
amd64_set_gsbase.c
MDASM= vfork.S brk.S cerror.S exect.S getcontext.S \
- sbrk.S setlogin.S sigreturn.S
+ sbrk.S setlogin.S
# Don't generate default code for these syscalls:
NOASM+= vfork.o
Modified: head/lib/libc/arm/sys/Makefile.inc
==============================================================================
--- head/lib/libc/arm/sys/Makefile.inc Wed Apr 4 21:31:12 2018 (r332047)
+++ head/lib/libc/arm/sys/Makefile.inc Wed Apr 4 22:45:08 2018 (r332048)
@@ -2,7 +2,7 @@
SRCS+= __vdso_gettc.c
-MDASM= Ovfork.S brk.S cerror.S sbrk.S shmat.S sigreturn.S syscall.S
+MDASM= Ovfork.S brk.S cerror.S sbrk.S shmat.S syscall.S
# Don't generate default code for these syscalls:
NOASM+= vfork.o
Modified: head/lib/libc/i386/sys/Makefile.inc
==============================================================================
--- head/lib/libc/i386/sys/Makefile.inc Wed Apr 4 21:31:12 2018 (r332047)
+++ head/lib/libc/i386/sys/Makefile.inc Wed Apr 4 22:45:08 2018 (r332048)
@@ -8,7 +8,7 @@ SRCS+= i386_get_fsbase.c i386_get_gsbase.c i386_get_io
i386_set_fsbase.c i386_set_gsbase.c i386_set_ioperm.c i386_set_ldt.c
MDASM= Ovfork.S brk.S cerror.S exect.S getcontext.S \
- sbrk.S setlogin.S sigreturn.S syscall.S
+ sbrk.S setlogin.S syscall.S
NOASM+= vfork.o
Modified: head/lib/libc/riscv/sys/Makefile.inc
==============================================================================
--- head/lib/libc/riscv/sys/Makefile.inc Wed Apr 4 21:31:12 2018 (r332047)
+++ head/lib/libc/riscv/sys/Makefile.inc Wed Apr 4 22:45:08 2018 (r332048)
@@ -5,7 +5,6 @@ SRCS+= trivial-vdso_tc.c
#MDASM= ptrace.S
MDASM= cerror.S \
shmat.S \
- sigreturn.S \
syscall.S \
vfork.S
More information about the svn-src-head
mailing list