]> pd.if.org Git - pdclib.old/blobdiff - man3/atexit.3
Remove empty lines from manpages (lint errors)
[pdclib.old] / man3 / atexit.3
index a210266150be56a057244b607acdd77ae1ecb75e..09fe18dfa1f7b7407869cc553639e79334f48023 100644 (file)
@@ -4,17 +4,17 @@
 .Dd\r
 .Dt atexit 3\r
 .Os\r
-\r
+.\"\r
 .Sh NAME\r
 .Nm atexit\r
 .Nd registration of functions to be invoked before process termination\r
-\r
+.\"\r
 .Sh SYNOPSIS\r
 .In stdlib.h\r
 .Fn "int atexit" "void (*handler)(void)"\r
 .Fn "int at_quick_exit" "void (*handler)(void)" \r
 (C11, C++11)\r
-\r
+.\"\r
 .Sh DESCRIPTION\r
 These functions register a function to be called when the corresponding process\r
 exit function is invoked. For\r
@@ -25,7 +25,7 @@ for
 .Fn at_quick_exit\r
 the function will be invoked when the process is terminated by calling\r
 .Fn quick_exit .\r
-\r
+.\"\r
 .Pp\r
 These functions are used in order to permit a program to perform actions before\r
 a process is terminated; for example, releasing an interprocess semaphore. \r
@@ -36,14 +36,14 @@ handlers; the purpose of
 is to support the abandonning of a process when normal process termination might\r
 not be possible; at_quick_exit handlers should therefore be used sparingly and\r
 only when their use is essential.\r
-\r
+.\"\r
 .Pp\r
 The standard guarantees that \r
 .Fn atexit\r
 and\r
 .Fn at_quick_exit\r
 may each be called at least 32 times successfully.\r
-\r
+.\"\r
 .Pp\r
 .Fn atexit \r
 and\r
@@ -51,7 +51,7 @@ and
 handlers are called in reverse order of the order they were registered in. For\r
 precise details of their ordering, see\r
 .Xr exit 3 .\r
-\r
+.\"\r
 .Pp\r
 The result of exiting from a handler registered with\r
 .Fn atexit\r
@@ -66,7 +66,7 @@ or
 should throw, \r
 .Fn std::terminate\r
 is invoked.\r
-\r
+.\"\r
 .Pp\r
 Undefined behaviour results if an \r
 .Fn atexit\r
@@ -76,19 +76,19 @@ handler calls
 .Fn exit\r
 or\r
 .Fn quick_exit . \r
-\r
+.\"\r
 .Sh RETURN VALUES\r
 Returns 0 to indicate success; nonzero returns indicate failure.\r
-\r
+.\"\r
 .Sh ERRORS\r
 No errors are defined\r
-\r
+.\"\r
 .Sh SEE ALSO\r
 .Xr abort 3\r
 .Xr exit 3\r
 .Xr quick_exit 3\r
 .Xr _Exit 3\r
-\r
+.\"\r
 .Sh STANDARDS\r
 .Fn atexit\r
 is first defined in\r