]> git.ipfire.org Git - thirdparty/man-pages.git/log
thirdparty/man-pages.git
10 years agoReady for 3.72 man-pages-3.72
Michael Kerrisk [Sun, 7 Sep 2014 12:04:14 +0000 (05:04 -0700)] 
Ready for 3.72

10 years agoRemoved trailing white space at end of lines
Michael Kerrisk [Sun, 7 Sep 2014 12:04:07 +0000 (05:04 -0700)] 
Removed trailing white space at end of lines

10 years agomemusage.1, memusagestat.1, connect.2, fcntl.2, poll.2, errno.3, rtnetlink.3, inotify...
Michael Kerrisk [Sat, 6 Sep 2014 13:42:42 +0000 (15:42 +0200)] 
memusage.1, memusagestat.1, connect.2, fcntl.2, poll.2, errno.3, rtnetlink.3, inotify.7: tstamp

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoChanges: Ready for 3.72
Michael Kerrisk [Sat, 6 Sep 2014 13:41:18 +0000 (15:41 +0200)] 
Changes: Ready for 3.72

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agortnetlink.3: Fix parameters for the send() call in the example
Holger Hans Peter Freyther [Sat, 30 Aug 2014 13:36:33 +0000 (15:36 +0200)] 
rtnetlink.3: Fix parameters for the send() call in the example

Signed-off-by: Holger Hans Peter Freyther <holger@moiji-mobile.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agopoll.2, select.2: fix erroneous description of "available for write".
Rusty Russell [Tue, 19 Aug 2014 13:57:21 +0000 (23:27 +0930)] 
poll.2, select.2: fix erroneous description of "available for write".

POSIX says: "POLLOUT Normal data may be written without
blocking.".  This is "may" is misleading, see the POSIX
write page:

    Write requests to a pipe or FIFO shall be handled in the
    same way as a regular file with the following exceptions:
    ...
    If the O_NONBLOCK flag is clear, a write request may cause
    the thread to block, but on normal completion it shall
    return nbyte.
    ...
    When attempting to write to a file descriptor (other than a
    pipe or FIFO) that supports non-blocking writes and cannot
    accept the data immediately:

    If the O_NONBLOCK flag is clear, write() shall block the
    calling thread until the data can be accepted.

    If the O_NONBLOCK flag is set, write() shall not block the
    thread. If some data can be written without blocking the
    thread, write() shall write what it can and return the
    number of bytes written. Otherwise, it shall return -1 and
    set errno to [EAGAIN].

The net result is that write() of more than 1 byte on a
socket, pipe or FIFO which is "ready" may block: write()
(unlike read!) will attempt to write the entire buffer and
only return a short write under exceptional circumstances.

Indeed, this is the behaviour we see in Linux:

https://github.com/rustyrussell/ccan/commit/897626152d12d7fd13a8feb36989eb5c8c1f3485
https://plus.google.com/103188246877163594460/posts/BkTGTMHDFgZ

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agopacket.7: Fix include file
Sorin Dumitru [Fri, 29 Aug 2014 13:20:06 +0000 (16:20 +0300)] 
packet.7: Fix include file

It looks like most of the socket options from this man pages
are not defined in <netpacket/packet.h>. They are defined in
<linux/if_packet.h> so we should include that one.

Note from mtk: it looks like <netpacket/packet.h> was based
on some ancient version of <linux/if_packet.h> that has not
been updated. Since linux/if_packet.h is under the "uapi" tree
the proposed patch seems the bext fix.

Signed-off-by: Sorin Dumitru <sdumitru@ixiacom.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoopen.2: tfix
Christian von Roques [Mon, 25 Aug 2014 12:40:42 +0000 (08:40 -0400)] 
open.2: tfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agogetrlimit.2, mmap.2, stat.2, unimplemented.2, dbopen.3, ecvt_r.3, fopen.3, fts.3...
Michael Kerrisk [Mon, 1 Sep 2014 15:57:07 +0000 (17:57 +0200)] 
getrlimit.2, mmap.2, stat.2, unimplemented.2, dbopen.3, ecvt_r.3, fopen.3, fts.3, getcontext.3, qecvt.3, ip.7, ld.so.8: grfix: Add Oxford comma

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoperf_event_open.2: srcfix: add FIXME
Michael Kerrisk [Mon, 1 Sep 2014 15:52:05 +0000 (17:52 +0200)] 
perf_event_open.2: srcfix: add FIXME

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomemusage.1, memusagestat.1: Move EXAMPLE from memusagestat.1 to memusage.1
Michael Kerrisk [Mon, 1 Sep 2014 15:16:36 +0000 (17:16 +0200)] 
memusage.1, memusagestat.1: Move EXAMPLE from memusagestat.1 to memusage.1

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomemusagestat.1: Add memusage output to example
Michael Kerrisk [Mon, 1 Sep 2014 13:08:18 +0000 (15:08 +0200)] 
memusagestat.1: Add memusage output to example

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomemusagestat.1: Various additions and improvements
Michael Kerrisk [Mon, 1 Sep 2014 12:30:34 +0000 (14:30 +0200)] 
memusagestat.1: Various additions and improvements

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomemusagestat.1: New page for glibc memusagestat(1) command
Peter Schiffer [Mon, 1 Sep 2014 08:53:25 +0000 (10:53 +0200)] 
memusagestat.1: New page for glibc memusagestat(1) command

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomemusage.1: Add notes on additional fields displayed for realloc() and mremap()
Michael Kerrisk [Mon, 1 Sep 2014 15:29:58 +0000 (17:29 +0200)] 
memusage.1: Add notes on additional fields displayed for realloc() and mremap()

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomemusage.1: Add some text on table produced by memusage
Michael Kerrisk [Mon, 1 Sep 2014 15:14:10 +0000 (17:14 +0200)] 
memusage.1: Add some text on table produced by memusage

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomemusage.1: Various additions and improvements
Michael Kerrisk [Mon, 1 Sep 2014 10:45:34 +0000 (12:45 +0200)] 
memusage.1: Various additions and improvements

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomemusage.1: New page for glibc memusage(1) command
Peter Schiffer [Mon, 1 Sep 2014 08:50:43 +0000 (10:50 +0200)] 
memusage.1: New page for glibc memusage(1) command

Submitted by Jan Chaloupka.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomtrace.1: SEE ALSO: Add memusage(1)
Michael Kerrisk [Mon, 1 Sep 2014 15:18:10 +0000 (17:18 +0200)] 
mtrace.1: SEE ALSO: Add memusage(1)

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomtrace.1: Minor tweaks
Michael Kerrisk [Mon, 1 Sep 2014 10:33:50 +0000 (12:33 +0200)] 
mtrace.1: Minor tweaks

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomalloc.3: grfix
Michael Kerrisk [Mon, 1 Sep 2014 15:24:34 +0000 (17:24 +0200)] 
malloc.3: grfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agolocale.1: ffix
Michael Kerrisk [Sat, 30 Aug 2014 13:48:26 +0000 (15:48 +0200)] 
locale.1: ffix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoldd.1: ffix
Michael Kerrisk [Sat, 30 Aug 2014 13:47:34 +0000 (15:47 +0200)] 
ldd.1: ffix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agosprof.1: ffix
Michael Kerrisk [Sat, 30 Aug 2014 13:45:00 +0000 (15:45 +0200)] 
sprof.1: ffix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomtrace.1: Minor fixes and rewordings
Michael Kerrisk [Sat, 30 Aug 2014 13:29:43 +0000 (15:29 +0200)] 
mtrace.1: Minor fixes and rewordings

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomtrace.1: New page describing the glibc mtrace(1) command
Peter Schiffer [Sat, 30 Aug 2014 13:17:57 +0000 (15:17 +0200)] 
mtrace.1: New page describing the glibc mtrace(1) command

Page submitted by Jan Chaloupka.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoinotify.7: IN_CLOSE_WRITE occurs only for files (not monitored directory)
Michael Kerrisk [Fri, 29 Aug 2014 17:15:38 +0000 (19:15 +0200)] 
inotify.7: IN_CLOSE_WRITE occurs only for files (not monitored directory)

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoinotify.7: IN_ACCESS occurs only for files inside directories
Michael Kerrisk [Fri, 29 Aug 2014 17:11:35 +0000 (19:11 +0200)] 
inotify.7: IN_ACCESS occurs only for files inside directories

IN_ACCESS does not occur for monitored directory.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoinotify.7: IN_MODIFY is generated for files only (not monitored directories)
Michael Kerrisk [Fri, 29 Aug 2014 17:06:26 +0000 (19:06 +0200)] 
inotify.7: IN_MODIFY is generated for files only (not monitored directories)

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoinotify.7: IN_OPEN and IN_CLOSE_NOWRITE can also occur for directories
Michael Kerrisk [Fri, 29 Aug 2014 16:58:33 +0000 (18:58 +0200)] 
inotify.7: IN_OPEN and IN_CLOSE_NOWRITE can also occur for directories

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoerrno.3: SEE ALSO: add errno(1)
Michael Kerrisk [Mon, 25 Aug 2014 16:40:57 +0000 (18:40 +0200)] 
errno.3: SEE ALSO: add errno(1)

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agogetpwnam(3): ffix
Mike Frysinger [Fri, 22 Aug 2014 08:36:12 +0000 (04:36 -0400)] 
getpwnam(3): ffix

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoconnect.2: Note that a new socket should be used if connect() fails
Michael Haardt [Thu, 21 Aug 2014 22:06:07 +0000 (17:06 -0500)] 
connect.2: Note that a new socket should be used if connect() fails

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoadjtimex.2, bind.2, cacheflush.2, clone.2, fallocate.2, fanotify_init.2, fanotify_mar...
Michael Kerrisk [Thu, 21 Aug 2014 21:47:44 +0000 (16:47 -0500)] 
adjtimex.2, bind.2, cacheflush.2, clone.2, fallocate.2, fanotify_init.2, fanotify_mark.2, flock.2, futex.2, getdents.2, getpriority.2, getrlimit.2, gettid.2, gettimeofday.2, ioprio_set.2, kexec_load.2, migrate_pages.2, modify_ldt.2, mount.2, move_pages.2, mprotect.2, msgop.2, nfsservctl.2, perf_event_open.2, pread.2, ptrace.2, recvmmsg.2, rename.2, restart_syscall.2, sched_setattr.2, send.2, shmop.2, shutdown.2, sigaction.2, signalfd.2, syscalls.2, timer_create.2, timerfd_create.2, tkill.2, vmsplice.2, wait.2, aio_init.3, confstr.3, exit.3, fmemopen.3, fopen.3, getaddrinfo.3, getauxval.3, getspnam.3, isalpha.3, isatty.3, mallinfo.3, malloc.3, mallopt.3, psignal.3, pthread_attr_setinheritsched.3, qecvt.3, queue.3, rtnetlink.3, strerror.3, strftime.3, toupper.3, towlower.3, towupper.3, initrd.4, locale.5, proc.5, bootparam.7, capabilities.7, ddp.7, fanotify.7, icmp.7, inotify.7, ip.7, ipv6.7, netdevice.7, netlink.7, path_resolution.7, rtld-audit.7, rtnetlink.7, sched.7, signal.7, socket.7, svipc.7, tcp.7, unix.7, ld.so.8: srcfix: Update FIXMEs

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoUpdate usage message
Michael Kerrisk [Thu, 21 Aug 2014 21:47:28 +0000 (16:47 -0500)] 
Update usage message

10 years agofcntl.2: srcfix
Michael Kerrisk [Thu, 21 Aug 2014 18:48:32 +0000 (13:48 -0500)] 
fcntl.2: srcfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agofcntl.2: One must define _GNU_SOURCE to get the F_OFD_* definitions
Michael Kerrisk [Thu, 21 Aug 2014 18:47:25 +0000 (13:47 -0500)] 
fcntl.2: One must define _GNU_SOURCE to get the F_OFD_* definitions

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoswapon.2: srcfix: add FIXME
Michael Kerrisk [Thu, 21 Aug 2014 16:29:26 +0000 (11:29 -0500)] 
swapon.2: srcfix: add FIXME

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoChanges.old: wfix
Michael Kerrisk [Wed, 20 Aug 2014 23:15:10 +0000 (18:15 -0500)] 
Changes.old: wfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoStart of man-pages-3.72: updating Changes and Changes.old
Michael Kerrisk [Tue, 19 Aug 2014 17:11:14 +0000 (12:11 -0500)] 
Start of man-pages-3.72: updating Changes and Changes.old

10 years agoStart of man-pages-3.72: updating .Announce and .lsm files
Michael Kerrisk [Tue, 19 Aug 2014 17:11:14 +0000 (12:11 -0500)] 
Start of man-pages-3.72: updating .Announce and .lsm files

10 years agoStart of man-pages-3.72: renaming .Announce and .lsm files
Michael Kerrisk [Tue, 19 Aug 2014 17:11:14 +0000 (12:11 -0500)] 
Start of man-pages-3.72: renaming .Announce and .lsm files

10 years agoReady for 3.71 man-pages-3.71
Michael Kerrisk [Tue, 19 Aug 2014 17:01:29 +0000 (12:01 -0500)] 
Ready for 3.71

10 years agoRemoved trailing white space at end of lines
Michael Kerrisk [Tue, 19 Aug 2014 17:01:21 +0000 (12:01 -0500)] 
Removed trailing white space at end of lines

10 years agoChanges: Expanded tabs
Michael Kerrisk [Tue, 19 Aug 2014 17:01:21 +0000 (12:01 -0500)] 
Changes: Expanded tabs

10 years agoaccess.2, bdflush.2, bind.2, brk.2, chmod.2, chown.2, clone.2, epoll_wait.2, execve...
Michael Kerrisk [Tue, 19 Aug 2014 16:55:41 +0000 (11:55 -0500)] 
access.2, bdflush.2, bind.2, brk.2, chmod.2, chown.2, clone.2, epoll_wait.2, execve.2, fsync.2, getgroups.2, gethostname.2, getpagesize.2, getpriority.2, getrlimit.2, ioperm.2, kexec_load.2, link.2, mkdir.2, mmap.2, msgop.2, perf_event_open.2, process_vm_readv.2, ptrace.2, readlink.2, readv.2, recv.2, rename.2, sched_setaffinity.2, select.2, send.2, seteuid.2, signal.2, sigwaitinfo.2, stat.2, symlink.2, sync.2, sync_file_range.2, sysinfo.2, timer_create.2, uname.2, unlink.2, utime.2, wait.2, abs.3, atoi.3, catopen.3, cerf.3, cexp2.3, clearenv.3, clog2.3, ctime.3, des_crypt.3, ecvt.3, fgetgrent.3, flockfile.3, fseeko.3, ftime.3, ftok.3, ftw.3, getauxval.3, getcwd.3, getdtablesize.3, getgrent.3, getgrent_r.3, getgrnam.3, getgrouplist.3, getline.3, getpass.3, getutent.3, glob.3, insque.3, lseek64.3, memmem.3, mkstemp.3, mktemp.3, on_exit.3, openpty.3, putenv.3, qecvt.3, realpath.3, remove.3, setbuf.3, sigpause.3, strftime.3, strptime.3, strstr.3, strtod.3, tzset.3, updwtmp.3, xcrypt.3, core.5, utmp.5, capabilities.7, charsets.7, environ.7, ipv6.7, man-pages.7, packet.7, vdso.7: tstamp

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoChanges: Ready for 3.71
Michael Kerrisk [Tue, 19 Aug 2014 16:34:08 +0000 (11:34 -0500)] 
Changes: Ready for 3.71

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoisfdtype.3: New page documenting isfdtype(3)
Michael Kerrisk [Thu, 13 Mar 2014 09:50:59 +0000 (10:50 +0100)] 
isfdtype.3: New page documenting isfdtype(3)

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agogetgrouplist.3: SEE ALSO: add group_member(3)
Michael Kerrisk [Sat, 22 Mar 2014 09:22:55 +0000 (10:22 +0100)] 
getgrouplist.3: SEE ALSO: add group_member(3)

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agogetgroups.2: SEE ALSO: add group_member(3)
Michael Kerrisk [Sat, 22 Mar 2014 09:22:06 +0000 (10:22 +0100)] 
getgroups.2: SEE ALSO: add group_member(3)

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agogroup_member.3: New page documenting group_member(3)
Michael Kerrisk [Sat, 22 Mar 2014 09:20:13 +0000 (10:20 +0100)] 
group_member.3: New page documenting group_member(3)

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agocapabilities.7: Add CAP_AUDIT_READ
Michael Kerrisk [Mon, 16 Jun 2014 10:09:13 +0000 (12:09 +0200)] 
capabilities.7: Add CAP_AUDIT_READ

CAP_AUDIT_READ is new in Linux 3.16.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoputenv.3: Minor rewording
Michael Kerrisk [Sun, 29 Jun 2014 13:45:33 +0000 (15:45 +0200)] 
putenv.3: Minor rewording

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoputenv.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 13:44:04 +0000 (15:44 +0200)] 
putenv.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agogetutent.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 13:34:18 +0000 (15:34 +0200)] 
getutent.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agogetpass.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 13:33:31 +0000 (15:33 +0200)] 
getpass.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoseteuid.2: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 12:41:54 +0000 (14:41 +0200)] 
seteuid.2: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoreadv.2: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 12:41:13 +0000 (14:41 +0200)] 
readv.2: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomsgop.2: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 12:39:51 +0000 (14:39 +0200)] 
msgop.2: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agogetpagesize.2: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 12:38:43 +0000 (14:38 +0200)] 
getpagesize.2: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoexecve.2: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 12:37:46 +0000 (14:37 +0200)] 
execve.2: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agopacket.7: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 12:26:10 +0000 (14:26 +0200)] 
packet.7: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoipv6.7: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 12:25:40 +0000 (14:25 +0200)] 
ipv6.7: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoenviron.7: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 12:25:07 +0000 (14:25 +0200)] 
environ.7: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoutmp.5: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 12:18:48 +0000 (14:18 +0200)] 
utmp.5: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoupdwtmp.3: Replace AVAILABILITY section with note to link logwtmp() using -lutil
Michael Kerrisk [Sun, 29 Jun 2014 12:16:42 +0000 (14:16 +0200)] 
updwtmp.3: Replace AVAILABILITY section with note to link logwtmp() using -lutil

Linux libc details are no longer needed these days.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agotzset.3: wfix
Michael Kerrisk [Sun, 29 Jun 2014 09:41:13 +0000 (11:41 +0200)] 
tzset.3: wfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agotzset.3: grfix
Michael Kerrisk [Sun, 29 Jun 2014 09:41:01 +0000 (11:41 +0200)] 
tzset.3: grfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agotzset.3: ffix
Michael Kerrisk [Sun, 29 Jun 2014 09:40:50 +0000 (11:40 +0200)] 
tzset.3: ffix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agotzset.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:40:35 +0000 (11:40 +0200)] 
tzset.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agosigpause.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:34:53 +0000 (11:34 +0200)] 
sigpause.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoremove.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:33:40 +0000 (11:33 +0200)] 
remove.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agorealpath.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:33:06 +0000 (11:33 +0200)] 
realpath.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoqecvt.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:28:44 +0000 (11:28 +0200)] 
qecvt.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoputenv.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:28:21 +0000 (11:28 +0200)] 
putenv.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoopenpty.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:27:58 +0000 (11:27 +0200)] 
openpty.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoon_exit.3: Minor wording fix
Michael Kerrisk [Sun, 29 Jun 2014 09:27:21 +0000 (11:27 +0200)] 
on_exit.3: Minor wording fix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoon_exit.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:26:52 +0000 (11:26 +0200)] 
on_exit.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomktemp.3: Remove ancient Linux libc/glibc1 details
Michael Kerrisk [Sun, 29 Jun 2014 09:26:16 +0000 (11:26 +0200)] 
mktemp.3: Remove ancient Linux libc/glibc1 details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomkstemp.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:25:43 +0000 (11:25 +0200)] 
mkstemp.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agolseek64.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:25:03 +0000 (11:25 +0200)] 
lseek64.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoxcrypt.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:15:28 +0000 (11:15 +0200)] 
xcrypt.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agostrptime.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:14:47 +0000 (11:14 +0200)] 
strptime.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agosetbuf.3: Remove ancient Linux libc and 4.x BSD details
Michael Kerrisk [Sun, 29 Jun 2014 09:11:24 +0000 (11:11 +0200)] 
setbuf.3: Remove ancient Linux libc and 4.x BSD details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agorealpath.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:09:06 +0000 (11:09 +0200)] 
realpath.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomemmem.3: Rewrite text of glibc 2.0 bug
Michael Kerrisk [Sun, 29 Jun 2014 09:08:28 +0000 (11:08 +0200)] 
memmem.3: Rewrite text of glibc 2.0 bug

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agomemmem.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:06:53 +0000 (11:06 +0200)] 
memmem.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agogetline.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:04:42 +0000 (11:04 +0200)] 
getline.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agodes_crypt.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:04:30 +0000 (11:04 +0200)] 
des_crypt.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoctime.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:03:55 +0000 (11:03 +0200)] 
ctime.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agostrftime.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:01:02 +0000 (11:01 +0200)] 
strftime.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoflockfile.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 09:00:28 +0000 (11:00 +0200)] 
flockfile.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoinsque.3: ffix
Michael Kerrisk [Sun, 29 Jun 2014 08:59:36 +0000 (10:59 +0200)] 
insque.3: ffix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoinsque.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 08:59:25 +0000 (10:59 +0200)] 
insque.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoglob.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 08:58:00 +0000 (10:58 +0200)] 
glob.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agogetpass.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 08:56:47 +0000 (10:56 +0200)] 
getpass.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agogetdtablesize.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 08:47:30 +0000 (10:47 +0200)] 
getdtablesize.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agogetcwd.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 08:47:01 +0000 (10:47 +0200)] 
getcwd.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoftw.3: Add VERSIONS section
Michael Kerrisk [Sun, 29 Jun 2014 08:46:12 +0000 (10:46 +0200)] 
ftw.3: Add VERSIONS section

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
10 years agoftw.3: Remove ancient Linux libc details
Michael Kerrisk [Sun, 29 Jun 2014 08:45:26 +0000 (10:45 +0200)] 
ftw.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>