svn commit: r332080 - in head/lib/libc: aarch64/sys arm/sys mips/sys riscv/sys

Brooks Davis brooks at FreeBSD.org
Thu Apr 5 18:17:47 UTC 2018


Author: brooks
Date: Thu Apr  5 18:17:46 2018
New Revision: 332080
URL: https://svnweb.freebsd.org/changeset/base/332080

Log:
  Remove architecture specific shmat.S files.
  
  These files are identical to the generated system calls.
  In the case of MIPS, the file was already disconnected from the build.
  
  Submitted by:	Ali Mashtizadeh <ali at mashtizadeh.com>
  Reviewed by:	kib
  Differential Revision:	https://reviews.freebsd.org/D14976

Deleted:
  head/lib/libc/aarch64/sys/shmat.S
  head/lib/libc/arm/sys/shmat.S
  head/lib/libc/mips/sys/shmat.S
  head/lib/libc/riscv/sys/shmat.S
Modified:
  head/lib/libc/aarch64/sys/Makefile.inc
  head/lib/libc/arm/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	Thu Apr  5 17:26:03 2018	(r332079)
+++ head/lib/libc/aarch64/sys/Makefile.inc	Thu Apr  5 18:17:46 2018	(r332080)
@@ -5,7 +5,6 @@ MIASM:=	${MIASM:Nfreebsd[467]_*}
 SRCS+=	__vdso_gettc.c
 
 MDASM=	cerror.S \
-	shmat.S \
 	syscall.S \
 	vfork.S
 

Modified: head/lib/libc/arm/sys/Makefile.inc
==============================================================================
--- head/lib/libc/arm/sys/Makefile.inc	Thu Apr  5 17:26:03 2018	(r332079)
+++ head/lib/libc/arm/sys/Makefile.inc	Thu Apr  5 18:17:46 2018	(r332080)
@@ -2,7 +2,7 @@
 
 SRCS+=	__vdso_gettc.c
 
-MDASM= Ovfork.S brk.S cerror.S sbrk.S shmat.S syscall.S
+MDASM= Ovfork.S brk.S cerror.S sbrk.S syscall.S
 
 # Don't generate default code for these syscalls:
 NOASM+=	vfork.o

Modified: head/lib/libc/riscv/sys/Makefile.inc
==============================================================================
--- head/lib/libc/riscv/sys/Makefile.inc	Thu Apr  5 17:26:03 2018	(r332079)
+++ head/lib/libc/riscv/sys/Makefile.inc	Thu Apr  5 18:17:46 2018	(r332080)
@@ -2,9 +2,7 @@
 
 SRCS+=	trivial-vdso_tc.c
 
-#MDASM= ptrace.S
 MDASM=	cerror.S \
-	shmat.S \
 	syscall.S \
 	vfork.S
 


More information about the svn-src-all mailing list