svn commit: r283751 - in head/lib/libc: arm/sys mips/sys

Brooks Davis brooks at FreeBSD.org
Fri May 29 19:42:56 UTC 2015


Author: brooks
Date: Fri May 29 19:42:55 2015
New Revision: 283751
URL: https://svnweb.freebsd.org/changeset/base/283751

Log:
  Removed unused special fork() implementations.
  
  The arm version hasn't been used in ages.
  
  The mips version uses a valid, but pointless check of v1 and has been
  unhooked from the build since r276630.
  
  Differential Revision:	https://reviews.freebsd.org/D2592
  Reviewed by:	emaste
  Sponsored by:	DARPA, AFRL

Deleted:
  head/lib/libc/arm/sys/fork.S
  head/lib/libc/mips/sys/fork.S
Modified:
  head/lib/libc/mips/sys/Makefile.inc

Modified: head/lib/libc/mips/sys/Makefile.inc
==============================================================================
--- head/lib/libc/mips/sys/Makefile.inc	Fri May 29 18:17:47 2015	(r283750)
+++ head/lib/libc/mips/sys/Makefile.inc	Fri May 29 19:42:55 2015	(r283751)
@@ -3,7 +3,7 @@
 SRCS+=	trivial-vdso_tc.c
 
 MDASM=  Ovfork.S brk.S cerror.S exect.S \
-	fork.S pipe.S ptrace.S sbrk.S syscall.S
+	pipe.S ptrace.S sbrk.S syscall.S
 
 # Don't generate default code for these syscalls:
 NOASM=	break.o exit.o getlogin.o openbsd_poll.o sstk.o vfork.o yield.o


More information about the svn-src-all mailing list