mallinfo.3: tfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2016-10-08 21:10:01 +02:00
parent 2433365bde
commit 3c841730e7
1 changed files with 2 additions and 2 deletions

View File

@ -121,7 +121,7 @@ T} Thread safety MT-Unsafe init const:mallopt
.TE
.BR mallinfo ()
would access some global iternal objects. If modify them with non-atomically,
would access some global internal objects. If modify them with non-atomically,
may get inconsistent results.
The identifier
.I mallopt
@ -129,7 +129,7 @@ in
.I const:mallopt
mean that
.BR mallopt ()
would modify the global iternal objects with atomics, that make sure
would modify the global internal objects with atomics, that make sure
.BR mallinfo ()
is safe enough, others modify with non-atomically maybe not.
.SH CONFORMING TO