]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/mcheck.3
CPU_SET.3, INFINITY.3, __ppc_get_timebase.3, __ppc_set_ppr_med.3, __ppc_yield.3,...
[thirdparty/man-pages.git] / man3 / mcheck.3
index 96cdba673ff96f5b86f8a7101d0428634da6205e..24e26ef1bbb30e1a5df33834661e155f7dce89fd 100644 (file)
@@ -48,7 +48,7 @@ on the state of the heap.
 The checks can detect application errors such as freeing a block of memory
 more than once or corrupting the bookkeeping data structures
 that immediately precede a block of allocated memory.
-
+.PP
 To be effective, the
 .BR mcheck ()
 function must be called before the first call to
@@ -60,7 +60,7 @@ inserts an implicit call to
 .BR mcheck ()
 (with a NULL argument)
 before the first call to a memory-allocation function.
-
+.PP
 The
 .BR mcheck_pedantic ()
 function is similar to
@@ -68,14 +68,14 @@ function is similar to
 but performs checks on all allocated blocks whenever
 one of the memory-allocation functions is called.
 This can be very slow!
-
+.PP
 The
 .BR mcheck_check_all ()
 function causes an immediate check on all allocated blocks.
 This call is effective only if
 .BR mcheck ()
 is called beforehand.
-
+.PP
 If the system detects an inconsistency in the heap,
 the caller-supplied function pointed to by
 .I abortfunc
@@ -88,7 +88,7 @@ is NULL, a default function prints an error message on
 .IR stderr
 and calls
 .BR abort (3).
-
+.PP
 The
 .BR mprobe ()
 function performs a consistency check on
@@ -100,7 +100,7 @@ function should be called beforehand (otherwise
 .BR mprobe ()
 returns
 .BR MCHECK_DISABLED ).
-
+.PP
 The following list describes the values returned by
 .BR mprobe ()
 or passed as the
@@ -162,7 +162,7 @@ MT-Unsafe race:mcheck
 const:malloc_hooks
 T}
 .TE
-
+.sp 1
 .SH CONFORMING TO
 These functions are GNU extensions.
 .SH NOTES