diff options
| author | Mike Pritchard <mpp@FreeBSD.org> | 1996-01-30 16:34:52 +0000 | 
|---|---|---|
| committer | Mike Pritchard <mpp@FreeBSD.org> | 1996-01-30 16:34:52 +0000 | 
| commit | a5ed710ccd3bc63d9258bd8aef8acbdaa6e978cf (patch) | |
| tree | 8aeda37daf69a55f7b237234fddb55ae594d2322 /lib/libc/stdlib | |
| parent | 62bdf2b7c6dd3823fa1949663f065e808d777f2d (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdlib')
| -rw-r--r-- | lib/libc/stdlib/getopt.3 | 2 | ||||
| -rw-r--r-- | lib/libc/stdlib/malloc.3 | 10 | 
2 files changed, 6 insertions, 6 deletions
| diff --git a/lib/libc/stdlib/getopt.3 b/lib/libc/stdlib/getopt.3 index 95ff6e6875c4..4d51bac04d74 100644 --- a/lib/libc/stdlib/getopt.3 +++ b/lib/libc/stdlib/getopt.3 @@ -124,7 +124,7 @@ returns an  .Dv EOF  when the argument list is exhausted, or a non-recognized  option is encountered. -The interpretation of options in the argument list may be cancelled +The interpretation of options in the argument list may be canceled  by the option  .Ql --  (double dash) which causes diff --git a/lib/libc/stdlib/malloc.3 b/lib/libc/stdlib/malloc.3 index 94a3fd6b90ef..9393b76aafe4 100644 --- a/lib/libc/stdlib/malloc.3 +++ b/lib/libc/stdlib/malloc.3 @@ -118,7 +118,7 @@ and scan it for flags.  Flags are single letters, uppercase means on, lowercase means off.  .Bl -tag -width indent  .It A -``abort'' malloc will coredump the process, rather that tollerate failure. +``abort'' malloc will coredump the process, rather than tolerate failure.  This is a very handy debugging aid, since the core file will represent the  time of failure,  rather than when the NULL pointer was accessed. @@ -138,12 +138,12 @@ This can substantially aid in compacting memory.  .It Z  ``zero'' fill some junk into the area allocated (see ``J''), -except for the exact length the user asked for, which is zerod. +except for the exact length the user asked for, which is zeroed.  .El  .Pp  The ``J'' and ``Z'' is mostly for testing and debugging, -if a program changes behaviour if either of these options are used, +if a program changes behavior if either of these options are used,  it is buggy.  .Sh RETURN VALUES  The @@ -177,7 +177,7 @@ attached to a 20bit binary challenged computer built with discrete germanium  transistors, and it has since graduated to handle primary storage rather than  secondary.  .Pp -The main difference from other malloc implementations are belived to be that +The main difference from other malloc implementations are believed to be that  the free pages are not accessed until allocated.  Most malloc implementations will store a data structure containing a,   possibly double-, linked list in the free chunks of memory, used to tie @@ -188,4 +188,4 @@ likely paged out, pages get faulted into primary memory, just to see what  lies after them in the list.  .Pp  On systems which are paging, this can make a factor five in difference on the -pagefaults of a process. +page-faults of a process. | 
