[Midnightbsd-cvs] src [10543] tag

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Thu Jun 7 19:04:27 EDT 2018


Revision: 10543
          http://svnweb.midnightbsd.org/src/?rev=10543
Author:   laffer1
Date:     2018-06-07 19:04:26 -0400 (Thu, 07 Jun 2018)
Log Message:
-----------
tag

Modified Paths:
--------------
    trunk/lib/libc/stdlib/a64l.3
    trunk/lib/libc/stdlib/a64l.c
    trunk/lib/libc/stdlib/abort.3
    trunk/lib/libc/stdlib/abort.c

Property Changed:
----------------
    trunk/lib/libc/stdlib/a64l.3
    trunk/lib/libc/stdlib/abort.3

Modified: trunk/lib/libc/stdlib/a64l.3
===================================================================
--- trunk/lib/libc/stdlib/a64l.3	2018-06-07 23:03:53 UTC (rev 10542)
+++ trunk/lib/libc/stdlib/a64l.3	2018-06-07 23:04:26 UTC (rev 10543)
@@ -1,3 +1,4 @@
+.\" $MidnightBSD$
 .\" Copyright (c) 2005 Tom Rhodes
 .\" All rights reserved.
 .\"
@@ -32,7 +33,7 @@
 .\" the referee document.  The original Standard can be obtained online at
 .\"	http://www.opengroup.org/unix/online.html.
 .\"
-.\" $FreeBSD$
+.\" $FreeBSD: stable/10/lib/libc/stdlib/a64l.3 162841 2006-09-30 10:34:13Z ru $
 .\"
 .Dd November 20, 2005
 .Dt A64L 3


Property changes on: trunk/lib/libc/stdlib/a64l.3
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/stdlib/a64l.c
===================================================================
--- trunk/lib/libc/stdlib/a64l.c	2018-06-07 23:03:53 UTC (rev 10542)
+++ trunk/lib/libc/stdlib/a64l.c	2018-06-07 23:04:26 UTC (rev 10543)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*-
  * Written by J.T. Conklin <jtc at netbsd.org>.
  * Public domain.
@@ -10,7 +11,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/stdlib/a64l.c 158749 2006-05-19 19:06:38Z jkim $");
 
 #include <stdlib.h>
 #include <inttypes.h>

Modified: trunk/lib/libc/stdlib/abort.3
===================================================================
--- trunk/lib/libc/stdlib/abort.3	2018-06-07 23:03:53 UTC (rev 10542)
+++ trunk/lib/libc/stdlib/abort.3	2018-06-07 23:04:26 UTC (rev 10543)
@@ -1,3 +1,4 @@
+.\" $MidnightBSD$
 .\" Copyright (c) 1990, 1991, 1993
 .\"	The Regents of the University of California.  All rights reserved.
 .\"
@@ -13,7 +14,7 @@
 .\" 2. Redistributions in binary form must reproduce the above copyright
 .\"    notice, this list of conditions and the following disclaimer in the
 .\"    documentation and/or other materials provided with the distribution.
-.\" 4. Neither the name of the University nor the names of its contributors
+.\" 3. Neither the name of the University nor the names of its contributors
 .\"    may be used to endorse or promote products derived from this software
 .\"    without specific prior written permission.
 .\"
@@ -30,7 +31,7 @@
 .\" SUCH DAMAGE.
 .\"
 .\"     @(#)abort.3	8.1 (Berkeley) 6/4/93
-.\" $FreeBSD$
+.\" $FreeBSD: stable/10/lib/libc/stdlib/abort.3 251069 2013-05-28 20:57:40Z emaste $
 .\"
 .Dd June 4, 1993
 .Dt ABORT 3


Property changes on: trunk/lib/libc/stdlib/abort.3
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/lib/libc/stdlib/abort.c
===================================================================
--- trunk/lib/libc/stdlib/abort.c	2018-06-07 23:03:53 UTC (rev 10542)
+++ trunk/lib/libc/stdlib/abort.c	2018-06-07 23:04:26 UTC (rev 10543)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1985, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -10,7 +11,7 @@
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *
@@ -31,7 +32,7 @@
 static char sccsid[] = "@(#)abort.c	8.1 (Berkeley) 6/4/93";
 #endif /* LIBC_SCCS and not lint */
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: stable/10/lib/libc/stdlib/abort.c 287480 2015-09-05 08:55:51Z kib $");
 
 #include "namespace.h"
 #include <signal.h>
@@ -61,7 +62,7 @@
 	 * any errors -- ISO C doesn't allow abort to return anyway.
 	 */
 	sigdelset(&act.sa_mask, SIGABRT);
-	(void)_sigprocmask(SIG_SETMASK, &act.sa_mask, NULL);
+	(void)__libc_sigprocmask(SIG_SETMASK, &act.sa_mask, NULL);
 	(void)raise(SIGABRT);
 
 	/*
@@ -71,9 +72,9 @@
 	act.sa_handler = SIG_DFL;
 	act.sa_flags = 0;
 	sigfillset(&act.sa_mask);
-	(void)_sigaction(SIGABRT, &act, NULL);
+	(void)__libc_sigaction(SIGABRT, &act, NULL);
 	sigdelset(&act.sa_mask, SIGABRT);
-	(void)_sigprocmask(SIG_SETMASK, &act.sa_mask, NULL);
+	(void)__libc_sigprocmask(SIG_SETMASK, &act.sa_mask, NULL);
 	(void)raise(SIGABRT);
 	exit(1);
 }



More information about the Midnightbsd-cvs mailing list