Commit Graph

9985 Commits

Author SHA1 Message Date
Michael Kerrisk ae71d89790 Ready for 3.62 2014-03-11 22:33:26 +01:00
Michael Kerrisk e9f22b0ac0 Removed trailing white space at end of lines 2014-03-11 22:33:19 +01:00
Michael Kerrisk 4ab0a73af9 gethostbyname.3: tstamp
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 22:33:01 +01:00
Michael Kerrisk c4630e5578 Changes: Ready for 3.62
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 22:32:14 +01:00
Michael Kerrisk 9ac2ee45bb qecvt.3: Recommend snprintf(3) not sprintf(3)
Reported-by: Joseph S. Myers <joseph@codesourcery.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 22:32:14 +01:00
Michael Kerrisk ed725bac60 feature_test_macros.7: Note version number for _POSIX_C_SOURCE >= 200112L implies C99/C95
_POSIX_C_SOURCE >= 200112L causes C95 definitions to be
exposed only since glibc 2.12 and C99 definitions only
since 2.10.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 22:32:14 +01:00
Simon Paillard 7af4d3183e mount.2: srcfix: remove non-ascii trailing space
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 22:32:05 +01:00
Michael Kerrisk 4edd4149dd locale.1: Various minor fixes after review by Mike Frysinger
Reviewed-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 12:36:54 +01:00
Michael Kerrisk 73155a2975 locale.1: New page describing locale(1)
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 12:36:47 +01:00
Michael Kerrisk bd297db00b clone.2: srcfix: Remove FIXME
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 11:41:45 +01:00
Michael Kerrisk cba9638bfb unshare.2: srcfix: remove FIXME
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 11:41:45 +01:00
Michael Kerrisk 64eb1484fb feature_test_macros.7: _ISOC99_SOURCE also exposes C95 definitions
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 11:41:45 +01:00
Michael Kerrisk 08d695652c feature_test_macros.7: _GNU_SOURCE implicitly defines other macros
Saying that _GNU_SOURCE has the "effects of" other macros is not
quite precise.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 11:41:45 +01:00
Michael Kerrisk b694081ac3 feature_test_macros.7: Minor clarification for _POSIX_C_SOURCE
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 11:41:45 +01:00
Michael Kerrisk df553d91c2 feature_test_macros.7: Rework discussion of _ISOC99_SOURCE
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 11:41:40 +01:00
Michael Kerrisk 2b4608d288 feature_test_macros.7: Reword glibc version for _ISOC95_SOURCE
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 08:42:18 +01:00
Michael Kerrisk d4e80b4d09 feature_test_macros.7: _XOPEN_SOURCE may implicitly defined _POSIX_SOURCE and _POSIX_C_SOURCE
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 08:32:17 +01:00
Michael Kerrisk e8349edb50 feature_test_macros.7: _POSIX_C_SOURCE >= 200112L implies C95 and C95 features
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 07:56:06 +01:00
Michael Kerrisk 8effdb2ded feature_test_macros.7: _ISOC11_SOURCE implies the effects of _ISOC99_SOURCE
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 07:44:00 +01:00
Michael Kerrisk d6ced64f1b feature_test_macros.7: Reword glibc version for _ISOC99_SOURCE
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 07:41:45 +01:00
Michael Kerrisk bb49fd9492 gethostbyname.3: Remove redundant FTM requirements
_GNU_SOURCE implies _SVID_SOURCE and _BSD_SOURCE, so

    _BSD_SOURCE || _SVID_SOURCE || _GNU_SOURCE

is the same as

    _BSD_SOURCE || _SVID_SOURCE

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-11 07:29:33 +01:00
Michael Kerrisk d6472258ec feature_test_macros.7: _BSD_SOURCE and _SVID_SOURCE are deprecated in glibc 2.20
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 17:20:06 +01:00
Michael Kerrisk fcea836046 sync.8: Page deleted
This page documents the sync command, which is provided by
coreutils. As such, the presence of this page in man-pages
makes no sense. And, anyway, the coreutils project has its
own sync(1) man page and "info" documentation. Furthermore,
the  man-pages sync(8) has crufty out-of-date and to some
extent irrelevant information.  So, now it's gone.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:20:05 +01:00
Peng Haitao daecb330df memchr.3: ATTRIBUTES: Note functions that are thread-safe
The functions memchr(), memrchr() and rawmemchr() are thread safe.

Signed-off-by: Peng Haitao <penght@cn.fujitsu.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:09:22 +01:00
Peng Haitao a69b2a64f1 memccpy.3: ATTRIBUTES: Note function that is thread-safe
The function memccpy() is thread safe.

Signed-off-by: Peng Haitao <penght@cn.fujitsu.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:09:14 +01:00
Peng Haitao 3e722e9e75 raise.3: ATTRIBUTES: Note function that is thread-safe
The function raise() is thread safe.

Signed-off-by: Peng Haitao <penght@cn.fujitsu.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:09:08 +01:00
Peng Haitao aaff622e8c remove.3: ATTRIBUTES: Note function that is thread-safe
The function remove() is thread safe.

Signed-off-by: Peng Haitao <penght@cn.fujitsu.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:09:01 +01:00
Peng Haitao 24bd2288e4 sem_init.3: ATTRIBUTES: Note function that is thread-safe
The function sem_init() is thread safe.

Signed-off-by: Peng Haitao <penght@cn.fujitsu.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:06:58 +01:00
Michael Kerrisk 3244e6ad0b feature_test_macros.7: ffix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:03:56 +01:00
Michael Kerrisk 199cbeb076 feature_test_macros.7: ffix: add some paragraph breaks
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:03:56 +01:00
Michael Kerrisk dfb1232ca8 feature_test_macros.7: Improve discussion of _DEFAULT_SOURCE
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:03:56 +01:00
Michael Kerrisk 496bdb5642 stat.2: Warn the reader that the 'stat' structure definition is not precise
Padding fields aren't shown, and the order of fields varies
somewhat across architectures.

Reported-by: Marius Gaubas <marius@livejournalinc.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:03:56 +01:00
Michael Kerrisk 1fef0fa346 stat.2: ffix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:03:56 +01:00
Michael Kerrisk e096bd701a stat.2: Minor rewording: eliminate clumsy use of "stat" as a verb
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:03:56 +01:00
Michael Kerrisk 392a12b215 getutmp.3: SEE ALSO: add utmpdump(1)
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:03:56 +01:00
Cyril Hrubis c98da6cf73 link.2: tfix
protected_hardlink -> protected_hardlinks

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:03:56 +01:00
Michael Kerrisk 841f7fc6f6 locale.7: tfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:03:56 +01:00
Peng Haitao 044738b4b0 sem_getvalue.3: ATTRIBUTES: Note function that is thread-safe
The function sem_getvalue() is thread safe.

Signed-off-by: Peng Haitao <penght@cn.fujitsu.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:03:56 +01:00
Peng Haitao 4ef41a4117 sem_destroy.3: ATTRIBUTES: Note function that is thread-safe
The function sem_destroy() is thread safe.

Signed-off-by: Peng Haitao <penght@cn.fujitsu.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:03:56 +01:00
Michael Kerrisk 3f89ae779f strcpy.3: Fix a bug, and improve discussion of forcing termination with strncpy()
Reported-by: Rick Stanley <rstanley@rsiny.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-10 15:03:50 +01:00
Michael Kerrisk 47e067e500 locale.7: wfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-04 13:13:31 +01:00
Michael Kerrisk a33c5137cc locale.7: wfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-04 13:12:25 +01:00
Michael Kerrisk c9e3729bea locale.5: LC_MONETARY: document 'int_p_cs_precedes' and 'int_n_cs_precedes'
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-04 13:06:12 +01:00
Michael Kerrisk 548fe9a5cc locale.5: LC_MONETARY: Document 'int_p_sign_posn' and 'int_n_sign_posn'
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-04 13:06:12 +01:00
Michael Kerrisk 923b0843f2 locale.5: LC_MONETARY: document 'int_p_sep_by_space' and 'int_n_sep_by_space'
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-04 13:06:12 +01:00
Michael Kerrisk aef9ea904c locale.5: ffix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-04 12:45:53 +01:00
Michael Kerrisk 8afc6598c3 locale.5: Clarify/rework 'p_cs_precedes' and 'n_cs_precedes'
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-04 12:42:39 +01:00
Michael Kerrisk d2a92628a1 locale.5: Clarify/simplify 'n_sep_by_space'
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-04 12:32:41 +01:00
Michael Kerrisk df31d6a5e2 locale.5: Clarify 'p_sep_by_space'
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-04 12:30:34 +01:00
Michael Kerrisk 0a5c57f964 locale.5: Clarify 'p_sign_posn' and 'n_sign_posn'; simplify 'n_sign_posn'
Add initial sentence for 'p_sign_posn' and 'n_sign_posn'.
Remove repeated list for 'n_sign_posn'.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2014-03-04 12:17:21 +01:00