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) _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
