svn commit: r209995 - in head/sys: amd64/include i386/include

Warner Losh imp at FreeBSD.org
Tue Jul 13 15:06:14 UTC 2010


Author: imp
Date: Tue Jul 13 15:06:13 2010
New Revision: 209995
URL: http://svn.freebsd.org/changeset/base/209995

Log:
  Remove obsolete undef of COPY_SIGCODE.  It appears to have not been
  used in FreeBSD in quite some time (maybe since before 4.4-lite :)
  
  Submitted by:	bde

Modified:
  head/sys/amd64/include/cpu.h
  head/sys/i386/include/cpu.h

Modified: head/sys/amd64/include/cpu.h
==============================================================================
--- head/sys/amd64/include/cpu.h	Tue Jul 13 15:01:36 2010	(r209994)
+++ head/sys/amd64/include/cpu.h	Tue Jul 13 15:06:13 2010	(r209995)
@@ -43,12 +43,6 @@
 #include <machine/frame.h>
 #include <machine/segments.h>
 
-/*
- * definitions of cpu-dependent requirements
- * referenced in generic code
- */
-#undef	COPY_SIGCODE		/* don't copy sigcode above user stack in exec */
-
 #define	cpu_exec(p)	/* nothing */
 #define	cpu_swapin(p)	/* nothing */
 #define	cpu_getstack(td)		((td)->td_frame->tf_rsp)

Modified: head/sys/i386/include/cpu.h
==============================================================================
--- head/sys/i386/include/cpu.h	Tue Jul 13 15:01:36 2010	(r209994)
+++ head/sys/i386/include/cpu.h	Tue Jul 13 15:06:13 2010	(r209995)
@@ -43,12 +43,6 @@
 #include <machine/frame.h>
 #include <machine/segments.h>
 
-/*
- * definitions of cpu-dependent requirements
- * referenced in generic code
- */
-#undef	COPY_SIGCODE		/* don't copy sigcode above user stack in exec */
-
 #define	cpu_exec(p)	/* nothing */
 #define	cpu_swapin(p)	/* nothing */
 #define	cpu_getstack(td)		((td)->td_frame->tf_esp)


More information about the svn-src-head mailing list