From: Akihiro MOTOKI Date: Thu, 23 Feb 2012 14:26:53 +0000 (+0900) Subject: (split) LDP_man-pages: update original to v3.34. X-Git-Tag: LDP-3.35-final~8 X-Git-Url: http://git.osdn.net/view?p=linuxjm%2FLDP_man-pages.git;a=commitdiff_plain;h=c36e46862ca474ca83b4f2748e88f1ad8d1550b9 (split) LDP_man-pages: update original to v3.34. --- diff --git a/original/man-pages.lsm b/original/man-pages.lsm index 14ccae18..43aae457 100644 --- a/original/man-pages.lsm +++ b/original/man-pages.lsm @@ -1,13 +1,13 @@ Begin3 Title: Section 2, 3, 4, 5 and 7 man pages for Linux -Version: 3.32 -Entered-date: 2010-12-03 +Version: 3.34 +Entered-date: 2011-09-23 Description: Linux manual pages Keywords: man pages Author: several Maintained-by: Michael Kerrisk Primary-site: ftp://ftp.kernel.org/pub/linux/docs/man-pages - 1668k man-pages-3.32.tar.gz + 1685k man-pages-3.34.tar.gz Alternate-site: ftp://ftp.win.tue.nl/pub/linux-local/manpages Copying-policy: several; the pages are all freely distributable as long as nroff source is provided diff --git a/original/man2/clock_getres.2 b/original/man2/clock_getres.2 index d52e828f..310749f0 100644 --- a/original/man2/clock_getres.2 +++ b/original/man2/clock_getres.2 @@ -27,6 +27,8 @@ .\" 2003-08-24 aeb, large parts rewritten .\" 2004-08-06 Christoph Lameter , SMP note .\" +.\" FIXME: Linux 2.6.39 adds CLOCK_BOOTTIME +.\" .TH CLOCK_GETRES 2 2010-02-03 "" "Linux Programmer's Manual" .SH NAME clock_getres, clock_gettime, clock_settime \- clock and time functions diff --git a/original/man2/clone.2 b/original/man2/clone.2 index 4085179d..609265d8 100644 --- a/original/man2/clone.2 +++ b/original/man2/clone.2 @@ -39,10 +39,8 @@ .\" .\" FIXME Document CLONE_NEWUSER, which is new in 2.6.23 .\" (also supported for unshare()?) -.\" FIXME . 2.6.25 marks the unused CLONE_STOPPED as obsolete, and it will -.\" probably be removed in the future. .\" -.TH CLONE 2 2010-11-01 "Linux" "Linux Programmer's Manual" +.TH CLONE 2 2011-09-08 "Linux" "Linux Programmer's Manual" .SH NAME clone, __clone2 \- create a child process .SH SYNOPSIS @@ -574,9 +572,12 @@ signal), and must be resumed by sending it a .B SIGCONT signal. -.I "From Linux 2.6.25 this flag is deprecated." -You probably never wanted to use it, -you certainly shouldn't be using it, and soon it will go away. +This flag was +.I deprecated +from Linux 2.6.25 onward, +and was +.I removed +altogether in Linux 2.6.38. .\" glibc 2.8 removed this defn from bits/sched.h .TP .BR CLONE_SYSVSEM " (since Linux 2.5.10)" diff --git a/original/man2/execve.2 b/original/man2/execve.2 index 7b37dc52..395e4832 100644 --- a/original/man2/execve.2 +++ b/original/man2/execve.2 @@ -34,7 +34,7 @@ .\" 2007-09-14 Ollie Wild , mtk .\" Add text describing limits on command-line arguments + environment .\" -.TH EXECVE 2 2010-01-06 "Linux" "Linux Programmer's Manual" +.TH EXECVE 2 2011-09-14 "Linux" "Linux Programmer's Manual" .SH NAME execve \- execute program .SH SYNOPSIS @@ -58,6 +58,8 @@ starting with a line of the form: For details of the latter case, see "Interpreter scripts" below. \fIargv\fP is an array of argument strings passed to the new program. +By convention, the first of these strings should contain the filename +associated with the file being executed. \fIenvp\fP is an array of strings, conventionally of the form \fBkey=value\fP, which are passed as environment to the new program. Both \fIargv\fP and \fIenvp\fP must be terminated by a null pointer. diff --git a/original/man2/fallocate.2 b/original/man2/fallocate.2 index 42eefbd8..a0c01a49 100644 --- a/original/man2/fallocate.2 +++ b/original/man2/fallocate.2 @@ -2,7 +2,9 @@ .\" Written by Dave Chinner .\" May be distributed as per GNU General Public License version 2. .\" -.TH FALLOCATE 2 2010-09-10 "Linux" "Linux Programmer's Manual" +.\" FIXME: Linux 2.6.38 added FALLOC_FL_PUNCH_HOLE +.\" +.TH FALLOCATE 2 2011-09-19 "Linux" "Linux Programmer's Manual" .SH NAME fallocate \- manipulate file space .SH SYNOPSIS @@ -17,7 +19,7 @@ fallocate \- manipulate file space This is a nonportable, Linux-specific system call. For the portable, POSIX.1-specified method of ensuring that space is allocated for a file, see -.BR posix_fallocate (). +.BR posix_fallocate (3). .BR fallocate () allows the caller to directly manipulate the allocated disk space @@ -78,7 +80,7 @@ Because allocation is done in block size chunks, may allocate a larger range than that which was specified. .SH RETURN VALUE .BR fallocate () -returns zero on success, and -1 on failure. +returns zero on success, and \-1 on failure. .SH ERRORS .TP .B EBADF @@ -123,6 +125,16 @@ The .I mode is not supported by the file system containing the file referred to by .IR fd . +.TP +.B EPERM +The file referred to by +.I fd +is marked immutable (see +.BR chattr (1)). +.TP +.B ESPIPE +.I fd +refers to a pipe or FIFO. .SH VERSIONS .BR fallocate () is available on Linux since kernel 2.6.23. diff --git a/original/man2/fcntl.2 b/original/man2/fcntl.2 index 1616e99b..6daf659f 100644 --- a/original/man2/fcntl.2 +++ b/original/man2/fcntl.2 @@ -58,7 +58,7 @@ .\" 2010-06-17, Michael Kerrisk .\" Document F_SETPIPE_SZ and F_GETPIPE_SZ. .\" -.TH FCNTL 2 2010-11-21 "Linux" "Linux Programmer's Manual" +.TH FCNTL 2 2011-09-15 "Linux" "Linux Programmer's Manual" .SH NAME fcntl \- manipulate file descriptor .SH SYNOPSIS @@ -162,7 +162,7 @@ The file status flags and their semantics are described in .BR open (2). .TP .BR F_GETFL " (\fIvoid\fP)" -Read the file status flags; +Get the file access mode and the file status flags; .I arg is ignored. .TP @@ -177,7 +177,7 @@ and file creation flags in .I arg are ignored. -On Linux this command can only change the +On Linux this command can change only the .BR O_APPEND , .BR O_ASYNC , .BR O_DIRECT , diff --git a/original/man2/fstatat.2 b/original/man2/fstatat.2 index 20b4c197..ddf03087 100644 --- a/original/man2/fstatat.2 +++ b/original/man2/fstatat.2 @@ -22,8 +22,7 @@ .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" -.\" -.TH FSTATAT 2 2010-11-21 "Linux" "Linux Programmer's Manual" +.TH FSTATAT 2 2011-09-19 "Linux" "Linux Programmer's Manual" .SH NAME fstatat \- get file status relative to a directory file descriptor .SH SYNOPSIS @@ -90,7 +89,19 @@ is absolute, then is ignored. .I flags -can either be 0, or include the following flag: +can either be 0, or include one or more of the following flags ORed: +.TP +.BR AT_NO_AUTOMOUNT " (since Linux 2.6.38)" +Don't automount the terminal ("basename") component of +.I pathname +if it is a directory that is an automount point. +This allows the caller to gather attributes of an automount point +(rather than the location it would mount). +This flag can be used in tools that scan directories +to prevent mass-automounting of a directory of automount points. +The +.B AT_NO_AUTOMOUNT +flag has no effect if the mount point has already been mounted over. .TP .B AT_SYMLINK_NOFOLLOW If @@ -143,7 +154,7 @@ for an explanation of the need for .BR fstatat (). The underlying system call employed by the glibc -.BR fstatat() +.BR fstatat () wrapper function is actually called .BR fstatat64 (). .SH "SEE ALSO" diff --git a/original/man2/get_mempolicy.2 b/original/man2/get_mempolicy.2 index bbbbab54..8212d4aa 100644 --- a/original/man2/get_mempolicy.2 +++ b/original/man2/get_mempolicy.2 @@ -74,7 +74,7 @@ process is allowed to specify in subsequent calls to .BR mbind (2) or .BR set_mempolicy (2) -[in the absense of any +[in the absence of any .IR "mode flags" ] is returned in .IR nodemask . diff --git a/original/man2/getrlimit.2 b/original/man2/getrlimit.2 index 52f99ab2..3b71e661 100644 --- a/original/man2/getrlimit.2 +++ b/original/man2/getrlimit.2 @@ -61,7 +61,7 @@ .\" 2008-05-07, mtk / Peter Zijlstra, Added description of RLIMIT_RTTIME .\" 2010-11-06, mtk: Added documentation of prlimit() .\" -.TH GETRLIMIT 2 2010-12-03 "Linux" "Linux Programmer's Manual" +.TH GETRLIMIT 2 2011-09-10 "Linux" "Linux Programmer's Manual" .SH NAME getrlimit, setrlimit, prlimit \- get/set resource limits .SH SYNOPSIS @@ -84,7 +84,7 @@ Feature Test Macro Requirements for glibc (see .in .sp .BR prlimit (): -_GNU_SOURCE +_GNU_SOURCE && _FILE_OFFSET_BITS == 64 .SH DESCRIPTION The .BR getrlimit () @@ -164,7 +164,7 @@ If the process continues to consume CPU time, it will be sent once per second until the hard limit is reached, at which time it is sent .BR SIGKILL . -(This latter point describes Linux 2.2 through 2.6 behavior. +(This latter point describes Linux behavior. Implementations vary in how they treat processes which continue to consume CPU time after reaching the soft limit. Portable applications that need to catch this signal should @@ -352,7 +352,7 @@ that may be queued for the real user ID of the calling process. Both standard and real-time signals are counted for the purpose of checking this limit. However, the limit is only enforced for -.BR sigqueue (2); +.BR sigqueue (3); it is always possible to use .BR kill (2) to queue one instance of any of the signals that are not already @@ -523,17 +523,21 @@ The program below demonstrates the use of .PP .nf #define _GNU_SOURCE +#define _FILE_OFFSET_BITS 64 #include #include #include #include #include +#define errExit(msg) do { perror(msg); exit(EXIT_FAILURE); \\ + } while (0) + int main(int argc, char *argv[]) { - struct rlimit64 old, new; - struct rlimit64 *newp; + struct rlimit old, new; + struct rlimit *newp; pid_t pid; if (!(argc == 2 || argc == 4)) { @@ -551,7 +555,7 @@ main(int argc, char *argv[]) newp = &new; } - /* Set CPU time limit of target prcess; retrieve and display + /* Set CPU time limit of target process; retrieve and display previous limit */ if (prlimit(pid, RLIMIT_CPU, newp, &old) == \-1) @@ -624,8 +628,8 @@ was greater than .BR quotactl (2), .BR sbrk (2), .BR shmctl (2), -.BR sigqueue (2), .BR malloc (3), +.BR sigqueue (3), .BR ulimit (3), .BR core (5), .BR capabilities (7), diff --git a/original/man2/kexec_load.2 b/original/man2/kexec_load.2 index 325ecec7..0afa887f 100644 --- a/original/man2/kexec_load.2 +++ b/original/man2/kexec_load.2 @@ -111,7 +111,7 @@ is copied from the calling process into previously reserved memory. On success, .BR kexec_load () returns 0. -On error, -1 is returned and +On error, \-1 is returned and .I errno is set to indicate the error. .SH ERRORS diff --git a/original/man2/kill.2 b/original/man2/kill.2 index ad25e676..4674e034 100644 --- a/original/man2/kill.2 +++ b/original/man2/kill.2 @@ -171,9 +171,9 @@ to all of the processes for which the caller had permission to signal. .BR _exit (2), .BR killpg (2), .BR signal (2), -.BR sigqueue (2), .BR tkill (2), .BR exit (3), +.BR sigqueue (3), .BR capabilities (7), .BR credentials (7), .BR signal (7) diff --git a/original/man2/linkat.2 b/original/man2/linkat.2 index b5f8d286..0d832e4b 100644 --- a/original/man2/linkat.2 +++ b/original/man2/linkat.2 @@ -22,6 +22,7 @@ .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" +.\" FIXME: Linux 2.6.39 added AT_EMPTY_PATH .\" .TH LINKAT 2 2009-12-13 "Linux" "Linux Programmer's Manual" .SH NAME diff --git a/original/man2/lseek.2 b/original/man2/lseek.2 index 9c8c25a7..9a59fa62 100644 --- a/original/man2/lseek.2 +++ b/original/man2/lseek.2 @@ -1,5 +1,6 @@ '\" t .\" Copyright (c) 1980, 1991 Regents of the University of California. +.\" and Copyright (c) 2011, Michael Kerrisk .\" All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without @@ -39,8 +40,9 @@ .\" .\" Modified 2001-09-24 by Michael Haardt .\" Modified 2003-08-21 by Andries Brouwer +.\" 2011-09-18, mtk, Added SEEK_DATA + SEEK_HOLE .\" -.TH LSEEK 2 2010-09-11 "Linux" "Linux Programmer's Manual" +.TH LSEEK 2 2011-09-20 "Linux" "Linux Programmer's Manual" .SH NAME lseek \- reposition read/write file offset .SH SYNOPSIS @@ -83,6 +85,70 @@ of the file (but this does not change the size of the file). If data is later written at this point, subsequent reads of the data in the gap (a "hole") return null bytes (\(aq\\0\(aq) until data is actually written into the gap. +.SS Seeking file data and holes +Since version 3.1, Linux supports the following additional values for +.IR whence : +.TP +.B SEEK_DATA +Adjust the file offset to the next location +in the file greater than or equal to +.I offset +containing data. +If +.I offset +points to data, +then the file offset is set to +.IR offset . +.TP +.B SEEK_HOLE +Adjust the file offset to the next hole in the file +greater than or equal to +.IR offset . +If +.I offset +points into the middle of a hole, +then the file offset is set to +.IR offset . +If there is no hole past +.IR offset , +then the file offset is adjusted to the end of the file +(i.e., there is an implicit hole at the end of any file). +.PP +In both of the above cases, +.BR lseek () +fails if +.I offset +points past the end of the file. + +These operations allow applications to map holes in a sparsely +allocated file. +This can be useful for applications such as file backup tools, +which can save space when creating backups and preserve holes, +if they have a mechanism for discovering holes. + +For the purposes of these operations, a hole is a sequence of zeros that +(normally) has not been allocated in the underlying file storage. +However, a file system is not obliged to report holes, +so these operations are not a guaranteed mechanism for +mapping the storage space actually allocated to a file. +(Furthermore, a sequence of zeros that actually has been written +to the underlying storage may not be reported as a hole.) +In the simplest implementation, +a file system can support the operations by making +.BR SEEK_HOLE +always return the offset of the end of the file, +and making +.BR SEEK_DATA +always return +return +.IR offset +(i.e., even if the location referred to by +.I offset +is a hole, +it can be considered to consist of data that is a sequence of zeros). +.\" https://lkml.org/lkml/2011/4/22/79 +.\" http://lwn.net/Articles/440255/ +.\" http://blogs.oracle.com/bonwick/entry/seek_hole_and_seek_data .SH "RETURN VALUE" Upon successful completion, .BR lseek () @@ -99,11 +165,8 @@ is not an open file descriptor. .TP .B EINVAL .I whence -is not one of -.BR SEEK_SET , -.BR SEEK_CUR , -.BR SEEK_END ; -or the resulting file offset would be negative, +is not valid. +Or: the resulting file offset would be negative, or beyond the end of a seekable device. .\" Some systems may allow negative offsets for character devices .\" and/or for remote file systems. @@ -116,13 +179,24 @@ The resulting file offset cannot be represented in an .B ESPIPE .I fd is associated with a pipe, socket, or FIFO. +.TP +.B ENXIO +.I whence +is +.B SEEK_DATA +or +.BR SEEK_HOLE , +and the current file offset is beyond the end of the file. .SH "CONFORMING TO" SVr4, 4.3BSD, POSIX.1-2001. -.SH NOTES -This document's use of -.I whence -is incorrect English, but maintained for historical reasons. +.BR SEEK_DATA +and +.BR SEEK_HOLE +are nonstandard extensions also present in Solaris; +they are proposed for inclusion in the next POSIX revision (Issue 8). +.\" FIXME . Review http://austingroupbugs.net/view.php?id=415 in the future +.SH NOTES Some devices are incapable of seeking and POSIX does not specify which devices must support .BR lseek (). diff --git a/original/man2/madvise.2 b/original/man2/madvise.2 index 6a449c50..36f988a3 100644 --- a/original/man2/madvise.2 +++ b/original/man2/madvise.2 @@ -29,8 +29,10 @@ .\" MADV_UNMERGEABLE .\" 2010-06-15, Andi Kleen, Add documentation of MADV_HWPOISON. .\" 2010-06-19, Andi Kleen, Add documentation of MADV_SOFT_OFFLINE. +.\" 2011-09-18, Doug Goldstein +.\" Document MADV_HUGEPAGE and MADV_NOHUGEPAGE .\" -.TH MADVISE 2 2010-06-20 "Linux" "Linux Programmer's Manual" +.TH MADVISE 2 2011-09-18 "Linux" "Linux Programmer's Manual" .SH NAME madvise \- give advice about use of memory .SH SYNOPSIS @@ -199,7 +201,7 @@ The and .BR MADV_UNMERGEABLE operations are only available if the kernel was configured with -.BR CONFIG_KSM. +.BR CONFIG_KSM . .TP .BR MADV_UNMERGEABLE " (since Linux 2.6.32)" Undo the effect of an earlier @@ -209,6 +211,42 @@ KSM unmerges whatever pages it had merged in the address range specified by .IR addr and .IR length . +.TP +.BR MADV_HUGEPAGE " (since Linux 2.6.38)" +.\" http://lwn.net/Articles/358904/ +.\" https://lwn.net/Articles/423584/ +Enables Transparent Huge Pages (THP) for pages in the range specified by +.I addr +and +.IR length . +Currently, Transparent Huge Pages only work with private anonymous pages (see +.BR mmap (2)). +The kernel will regularly scan the areas marked as huge page candidates +to replace them with huge pages. +The kernel will also allocate huge pages directly when the region is +naturally aligned to the huge page size (see +.BR posix_memalign (2)). +This feature is primarily aimed at applications that use large mappings of +data and access large regions of that memory at a time (e.g. virtualization +systems such as QEMU). +It can very easily waste memory (e.g. a 2MB mapping that only ever accesses +1 byte will result in 2MB of wired memory instead of one 4KB page). +See the kernel source file +.I Documentation/vm/transhuge.txt +for more details. +The +.BR MADV_HUGEPAGE +and +.BR MADV_NOHUGEPAGE +operations are only available if the kernel was configured with +.BR CONFIG_TRANSPARENT_HUGEPAGE . +.TP +.BR MADV_NOHUGEPAGE " (since Linux 2.6.38)" +Ensures that memory in the address range specified by +.IR addr +and +.IR length +will not be collapsed into huge pages. .SH "RETURN VALUE" On success .BR madvise () diff --git a/original/man2/mlock.2 b/original/man2/mlock.2 index 45f5f1dd..5db1b22b 100644 --- a/original/man2/mlock.2 +++ b/original/man2/mlock.2 @@ -24,7 +24,7 @@ .\" Software Foundation, Inc., 59 Temple Place, Suite 330, .\" Boston, MA 02111, USA. .\" -.TH MLOCK 2 2010-10-30 "Linux" "Linux Programmer's Manual" +.TH MLOCK 2 2011-09-14 "Linux" "Linux Programmer's Manual" .SH NAME mlock, munlock, mlockall, munlockall \- lock and unlock memory .SH SYNOPSIS @@ -143,19 +143,9 @@ half of RAM. .\" pages, which of course is not true. (MTK, Nov 04, kernel 2.4.28) .TP .B EPERM -(Linux 2.6.9 and later) the caller was not privileged +The caller is not privileged, but needs privilege .RB ( CAP_IPC_LOCK ) -and its -.B RLIMIT_MEMLOCK -soft resource limit was 0. -.TP -.B EPERM -(Linux 2.6.8 and earlier) -The calling process has insufficient privilege to call -.BR munlockall (). -Under Linux the -.B CAP_IPC_LOCK -capability is required. +to perform the requested operation. .\"SVr4 documents an additional EAGAIN error code. .LP For @@ -167,8 +157,11 @@ and Some or all of the specified address range could not be locked. .TP .B EINVAL -.I len -was negative. +The result of the addition +.IR start + len +was less than +.IR start +(e.g., the addition may have resulted in an overflow). .TP .B EINVAL (Not on Linux) diff --git a/original/man2/mprotect.2 b/original/man2/mprotect.2 index 8af7d3e8..b1b3bd50 100644 --- a/original/man2/mprotect.2 +++ b/original/man2/mprotect.2 @@ -29,7 +29,7 @@ .\" 2007-06-02, mtk: Fairly substantial rewrites and additions, and .\" a much improved example program. .\" -.TH MPROTECT 2 2008-08-06 "Linux" "Linux Programmer's Manual" +.TH MPROTECT 2 2011-09-08 "Linux" "Linux Programmer's Manual" .SH NAME mprotect \- set protection on a region of memory .SH SYNOPSIS @@ -98,7 +98,7 @@ Internal kernel structures could not be allocated. .B ENOMEM Addresses in the range .RI [ addr , -.IR addr + len ] +.IR addr + len \-1] are invalid for the address space of the process, or specify one or more pages that are not mapped. (Before kernel 2.4.19, the error @@ -207,7 +207,7 @@ main(int argc, char *argv[]) printf("Start of region: 0x%lx\\n", (long) buffer); if (mprotect(buffer + pagesize * 2, pagesize, - PROT_NONE) == \-1) + PROT_READ) == \-1) handle_error("mprotect"); for (p = buffer ; ; ) diff --git a/original/man2/open.2 b/original/man2/open.2 index ff3aa88a..f1c32388 100644 --- a/original/man2/open.2 +++ b/original/man2/open.2 @@ -47,8 +47,9 @@ .\" FIXME . Apr 08: The next POSIX revision has O_EXEC, O_SEARCH, and .\" O_TTYINIT. Eventually these may need to be documented. --mtk .\" FIXME Linux 2.6.33 has O_DSYNC, and a hidden __O_SYNC. +.\" FIXME: Linux 2.6.39 added O_PATH .\" -.TH OPEN 2 2010-11-15 "Linux" "Linux Programmer's Manual" +.TH OPEN 2 2011-09-08 "Linux" "Linux Programmer's Manual" .SH NAME open, creat \- open and possibly create a file or device .SH SYNOPSIS @@ -79,7 +80,7 @@ By default, the new file descriptor is set to remain open across an .B FD_CLOEXEC file descriptor flag described in .BR fcntl (2) -is initially disabled; the Linux-specific +is initially disabled; the .B O_CLOEXEC flag, described below, can be used to change this default). The file offset is set to the beginning of the file (see @@ -384,7 +385,7 @@ Setting the .B _FILE_OFFSET_BITS feature test macro to 64 (rather than using .BR O_LARGEFILE ) -is the preferred method of obtaining +is the preferred method of accessing large files on 32-bit systems (see .BR feature_test_macros (7)). .TP diff --git a/original/man2/poll.2 b/original/man2/poll.2 index 44986fa1..7cf16423 100644 --- a/original/man2/poll.2 +++ b/original/man2/poll.2 @@ -191,7 +191,8 @@ allows an application to safely wait until either a file descriptor becomes ready or until a signal is caught. .PP Other than the difference in the precision of the -timeout argument, the following +.I timeout +argument, the following .BR ppoll () call: .nf @@ -207,7 +208,7 @@ executing the following calls: sigset_t origmask; int timeout; - timeout = (timeout_ts == NULL) ? -1 : + timeout = (timeout_ts == NULL) ? \-1 : (timeout_ts.tv_sec * 1000 + timeout_ts.tv_nsec / 1000000); sigprocmask(SIG_SETMASK, &sigmask, &origmask); ready = poll(&fds, nfds, timeout); @@ -228,7 +229,9 @@ no signal mask manipulation is performed .BR ppoll () differs from .BR poll () -only in the precision of the timeout argument). +only in the precision of the +.I timeout +argument). The .I timeout_ts @@ -287,7 +290,9 @@ system call was introduced in Linux 2.1.23. The .BR poll () library call was introduced in libc 5.4.28 -(and provides emulation using select(2) if your kernel does not +(and provides emulation using +.BR select (2) +if your kernel does not have a .BR poll () system call). diff --git a/original/man2/posix_fadvise.2 b/original/man2/posix_fadvise.2 index bf21689d..740e6918 100644 --- a/original/man2/posix_fadvise.2 +++ b/original/man2/posix_fadvise.2 @@ -56,7 +56,8 @@ to perform appropriate optimizations. The \fIadvice\fP applies to a (not necessarily existent) region starting at \fIoffset\fP and extending for \fIlen\fP bytes (or until the end of the file if \fIlen\fP is 0) within the file referred to by \fIfd\fP. -The advice is not binding; it merely constitutes an expectation on behalf of +The \fIadvice\fP is not binding; +it merely constitutes an expectation on behalf of the application. Permissible values for \fIadvice\fP include: @@ -165,12 +166,12 @@ system call that orders the arguments suitably: .in +4n .nf .BI "long arm_fadvise64_64(int " fd ", int " advice , -.BI " loff_t " offset ", loff_t " len ); +.BI " loff_t " offset ", loff_t " len ); .fi .in .PP The behavior of this system call is otherwise exactly the same as -.BR posix_fadvise(). +.BR posix_fadvise (). No library support is provided for this system call in glibc. .\" No ARM support in glibc. .SH BUGS diff --git a/original/man2/prctl.2 b/original/man2/prctl.2 index bb455fa8..55b5b740 100644 --- a/original/man2/prctl.2 +++ b/original/man2/prctl.2 @@ -43,7 +43,7 @@ .\" FIXME: Document PR_TASK_PERF_EVENTS_DISABLE and .\" PR_TASK_PERF_EVENTS_ENABLE (new in 2.6.32) .\" -.TH PRCTL 2 2010-05-13 "Linux" "Linux Programmer's Manual" +.TH PRCTL 2 2011-09-17 "Linux" "Linux Programmer's Manual" .SH NAME prctl \- operations on a process .SH SYNOPSIS @@ -60,7 +60,7 @@ is called with a first argument describing what to do arguments with a significance depending on the first one. The first argument can be: .TP -.BR PR_CAPBSET_READ " (since Linux 2.6.25) +.BR PR_CAPBSET_READ " (since Linux 2.6.25)" Return (as the function result) 1 if the capability specified in .I arg2 is in the calling thread's capability bounding set, @@ -120,6 +120,9 @@ for security reasons, this feature has been removed. .I /proc/sys/fs/suid_dumpable in .BR proc (5).) +Processes that are not dumpable can not be attached via +.BR ptrace(2) +.BR PTRACE_ATTACH . .TP .BR PR_GET_DUMPABLE " (since Linux 2.3.20)" Return (as the function result) the current state of the calling @@ -361,7 +364,7 @@ signal as soon as hardware memory corruption is detected inside its address space. In late kill mode, the process is only killed when it accesses a corrupted page. See -.I sigaction(2) +.BR sigaction (2) for more information on the .BR SIGBUS signal. diff --git a/original/man2/ptrace.2 b/original/man2/ptrace.2 index 9cd58996..ea41a263 100644 --- a/original/man2/ptrace.2 +++ b/original/man2/ptrace.2 @@ -40,6 +40,8 @@ .\" PTRACE_SETSIGINFO, PTRACE_SYSEMU, PTRACE_SYSEMU_SINGLESTEP .\" (Thanks to Blaisorblade, Daniel Jacobowitz and others who helped.) .\" +.\" FIXME: Linux 3.1 adds PTRACE_SEIZE, PTRACE_INTERRUPT, and PTRACE_LISTEN. +.\" .TH PTRACE 2 2009-03-30 "Linux" "Linux Programmer's Manual" .SH NAME ptrace \- process trace @@ -206,7 +208,7 @@ as a bit mask of options, which are specified by the following flags: .TP .BR PTRACE_O_TRACESYSGOOD " (since Linux 2.4.6)" When delivering syscall traps, set bit 7 in the signal number -(i.e., deliver \fI(SIGTRAP | 0x80)\fP +(i.e., deliver \fISIGTRAP | 0x80\fP). This makes it easy for the tracer to tell the difference between normal traps and those caused by a syscall. .RB ( PTRACE_O_TRACESYSGOOD diff --git a/original/man2/readlink.2 b/original/man2/readlink.2 index 1327e089..97d5ce9f 100644 --- a/original/man2/readlink.2 +++ b/original/man2/readlink.2 @@ -1,4 +1,5 @@ .\" Copyright (c) 1983, 1991 The Regents of the University of California. +.\" Adn Copyright (C) 2011 Guillem Jover .\" All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without @@ -34,8 +35,10 @@ .\" Modified Sat Jul 24 00:10:21 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Tue Jul 9 23:55:17 1996 by aeb .\" Modified Fri Jan 24 00:26:00 1997 by aeb +.\" 2011-09-20, Guillem Jover : +.\" Added text on dynamically allocating buffer + example program .\" -.TH READLINK 2 2010-09-20 "Linux" "Linux Programmer's Manual" +.TH READLINK 2 2011-09-20 "Linux" "Linux Programmer's Manual" .SH NAME readlink \- read value of a symbolic link .SH SYNOPSIS @@ -130,7 +133,84 @@ was declared as Nowadays, the return type is declared as .IR ssize_t , as (newly) required in POSIX.1-2001. + +Using a statically sized buffer might not provide enough room for the +symbolic link contents. +The required size for the buffer can be obtained from the +.I stat.st_size +value returned by a call to +.BR lstat (2) +on the link. +However, the number of bytes written by +.BR readlink () +should be checked to make sure that the size of the +symbolic link did not increase between the calls. +Dynamically allocating the buffer for +.BR readlink () +also addresses a common portability problem when using +.I PATH_MAX +for the buffer size, +as this constant is not guaranteed to be defined per POSIX +if the system does not have such limit. +.SH EXAMPLE +The following program allocates the buffer needed by +.BR readlink () +dynamically from the information provided by +.BR lstat (), +making sure there's no race condition between the calls. +.nf + +#include +#include +#include +#include +#include + +int +main(int argc, char *argv[]) +{ + struct stat sb; + char *linkname; + ssize_t r; + + if (argc != 2) { + fprintf(stderr, "Usage: %s \\n", argv[0]); + exit(EXIT_FAILURE); + } + + if (lstat(argv[1], &sb) == \-1) { + perror("lstat"); + exit(EXIT_FAILURE); + } + + linkname = malloc(sb.st_size + 1); + if (linkname == NULL) { + fprintf(stderr, "insufficient memory\\n"); + exit(EXIT_FAILURE); + } + + r = readlink(argv[1], linkname, sb.st_size + 1); + + if (r < 0) { + perror("lstat"); + exit(EXIT_FAILURE); + } + + if (r != sb.st_size) { + fprintf(stderr, "symlink increased in size " + "between lstat() and readlink()\\n"); + exit(EXIT_FAILURE); + } + + linkname[sb.st_size] = '\\0'; + + printf("'%s' points to '%s'\\n", argv[1], linkname); + + exit(EXIT_SUCCESS); +} +.fi .SH "SEE ALSO" +.BR readlink (1), .BR lstat (2), .BR readlinkat (2), .BR stat (2), diff --git a/original/man2/recv.2 b/original/man2/recv.2 index f7fab72c..0deb6931 100644 --- a/original/man2/recv.2 +++ b/original/man2/recv.2 @@ -36,7 +36,7 @@ .\" Modified 1998,1999 by Andi Kleen .\" 2001-06-19 corrected SO_EE_OFFENDER, bug report by James Hawtin .\" -.TH RECV 2 2010-08-29 "Linux" "Linux Programmer's Manual" +.TH RECV 2 2011-09-16 "Linux" "Linux Programmer's Manual" .SH NAME recv, recvfrom, recvmsg \- receive a message from a socket .SH SYNOPSIS @@ -360,7 +360,9 @@ errors, IP options, or file descriptors over UNIX domain sockets. .PP The .I msg_flags -field in the msghdr is set on return of +field in the +.I msghdr +is set on return of .BR recvmsg (). It can contain several flags: .TP diff --git a/original/man2/rt_sigqueueinfo.2 b/original/man2/rt_sigqueueinfo.2 index 5e0a14fc..4f7e8ce0 100644 --- a/original/man2/rt_sigqueueinfo.2 +++ b/original/man2/rt_sigqueueinfo.2 @@ -1 +1,190 @@ -.so man2/sigqueue.2 +.\" Copyright (c) 2002, 2011 Michael Kerrisk +.\" +.\" Permission is granted to make and distribute verbatim copies of this +.\" manual provided the copyright notice and this permission notice are +.\" preserved on all copies. +.\" +.\" Permission is granted to copy and distribute modified versions of this +.\" manual under the conditions for verbatim copying, provided that the +.\" entire resulting derived work is distributed under the terms of a +.\" permission notice identical to this one. +.\" +.\" Since the Linux kernel and libraries are constantly changing, this +.\" manual page may be incorrect or out-of-date. The author(s) assume no +.\" responsibility for errors or omissions, or for damages resulting from +.\" the use of the information contained herein. The author(s) may not +.\" have taken the same level of care in the production of this manual, +.\" which is licensed free of charge, as they might when working +.\" professionally. +.\" +.\" Formatted or processed versions of this manual, if unaccompanied by +.\" the source, must acknowledge the copyright and authors of this work. +.\" +.TH RT_SIGQUEUEINFO 2 2011-09-18 "Linux" "Linux Programmer's Manual" +.SH NAME +rt_sigqueueinfo, rt_tgsigqueueinfo \- queue a signal and data +.SH SYNOPSIS +.nf +.BI "int rt_sigqueueinfo(pid_t " tgid ", int " sig ", siginfo_t *" uinfo ); +.sp +.BI "int rt_tgsigqueueinfo(pid_t " tgid ", pid_t " tid ", int " sig , +.BI " siginfo_t *" uinfo ); +.fi +.SH DESCRIPTION +The +.BR rt_sigqueueinfo () +and +.BR rt_tgsigqueueinfo () +system calls are the low-level interfaces used to send a signal plus data +to a process or thread. +The receiver of the signal can obtain the accompanying data +by establishing a signal handler with the +.BR sigaction (2) +.B SA_SIGINFO +flag. + +These system calls are not intended for direct application use; +they are provided to allow the implementation of +.BR sigqueue (3) +and +.BR pthread_sigqueue (3). + +The +.BR rt_sigqueueinfo () +system call sends the signal +.I sig +to the thread group with the ID +.IR tgid . +(The term "thread group" is synonomous with "process", and +.I tid +corresponds to the traditional UNIX process ID.) +The signal will be delivered to an arbitrary member of the thread group +(i.e., one of the threads that is not currently blocking the signal). + +The +.I uinfo +argument specifies the data to accompany the signal. +This argument is a pointer to a structure of type +.IR siginfo_t , +described in +.BR sigaction (2) +(and defined by including +.IR ). +The caller should set the following fields in this structure: +.TP +.I si_code +This must be one of the +.B SI_* +codes in the kernel source file +.IR include/asm-generic/siginfo.h , +with the restriction that the code must be negative +(i.e., cannot be +.BR SI_USER , +which is used by the kernel to indicate a signal sent by +.BR kill (2)) +and cannot (since Linux 2.6.39) be +.BR SI_TKILL +(which is used by the kernel to indicate a signal sent using +.\" tkill(2) or +.BR tgkill (2)). +.TP +.I si_pid +This should be set to a process ID, +typically the process ID of the sender. +.TP +.I si_uid +This should be set to a user ID, +typically the real user ID of the sender. +.TP +.I si_value +This field contains the user data to accompany the signal. +For more information, see the description of the last +.RI ( "union sigval" ) +argument of +.BR sigqueue (3). +.PP +Internally, the kernel sets the +.I si_signo +field to the value specified in +.IR sig , +so that the receiver of the signal can also obtain +the signal number via that field. + +The +.BR rt_tgsigueueinfo () +system call is like +.BR rt_sigueueinfo (), +but sends the signal and data to the single thread +specified by the combination of +.IR tgid , +a thread group ID, +and +.IR tid , +a thread in that thread group. +.SH "RETURN VALUE" +On success, these system calls return 0. +On error, they return \-1 and +.I errno +is set to indicate the error. +.SH ERRORS +.TP +.B EAGAIN +The limit of signals which may be queued has been reached. +(See +.BR signal (7) +for further information.) +.TP +.B EINVAL +.IR sig , +.IR tgid , +or +.IR tid +was invalid. +.TP +.B EPERM +The caller does not have permission to send the signal to the target. +For the required permissions, see +.BR kill (2). +Or: +.I uinfo->si_code +is invalid. +.TP +.B ESRCH +.BR rt_sigqueinfo (): +No thread group matching +.I tgid +was found. +.br +.BR rt_rtsigqueinfo (): +No thread matching +.I tgid +and +.I tid +was found. +.SH VERSIONS +The +.BR rt_sigqueueinfo () +system call was added to Linux in version 2.2. +The +.BR rt_tgsigqueueinfo () +system call was added to Linux in version 2.6.31. +.SH "CONFORMING TO" +These system calls are Linux-specific. +.SH NOTES +Since these system calls are not intended for application use, +there are no glibc wrapper functions; use +.BR syscall (2) +in the unlikely case that you want to call them directly. + +As with +.BR kill (2), +the null signal (0) can be used to check if the specified process +or thread exists. +.SH "SEE ALSO" +.BR kill (2), +.BR sigaction (2), +.BR sigprocmask (2), +.BR tgkill (2), +.BR pthread_sigqueue (3), +.BR sigqueue (3), +.BR signal (7) diff --git a/original/man2/rt_tgsigqueueinfo.2 b/original/man2/rt_tgsigqueueinfo.2 new file mode 100644 index 00000000..7b6cf681 --- /dev/null +++ b/original/man2/rt_tgsigqueueinfo.2 @@ -0,0 +1 @@ +.so man2/rt_sigqueueinfo.2 diff --git a/original/man2/sched_setscheduler.2 b/original/man2/sched_setscheduler.2 index 96ccfe6a..863fc50c 100644 --- a/original/man2/sched_setscheduler.2 +++ b/original/man2/sched_setscheduler.2 @@ -44,7 +44,7 @@ .\" .\" Worth looking at: http://rt.wiki.kernel.org/index.php .\" -.TH SCHED_SETSCHEDULER 2 2010-10-04 "Linux" "Linux Programmer's Manual" +.TH SCHED_SETSCHEDULER 2 2011-09-19 "Linux" "Linux Programmer's Manual" .SH NAME sched_setscheduler, sched_getscheduler \- set and get scheduling policy/parameters @@ -354,11 +354,22 @@ as long as the effective user ID of the process making the change matches the real or effective user ID of the target process. .IP * Special rules apply for the -.BR SCHED_IDLE : +.BR SCHED_IDLE . +In Linux kernels before 2.6.39, an unprivileged process operating under this policy cannot change its policy, regardless of the value of its .BR RLIMIT_RTPRIO resource limit. +In Linux kernels since 2.6.39, +.\" commit c02aa73b1d18e43cfd79c2f193b225e84ca497c8 +an unprivileged process can switch to either the +.BR SCHED_BATCH +or the +.BR SCHED_NORMAL +policy so long as its nice value falls within the range permitted by its +.BR RLIMIT_NICE +resource limit (see +.BR getrlimit (2)). .PP Privileged .RB ( CAP_SYS_NICE ) diff --git a/original/man2/sendfile.2 b/original/man2/sendfile.2 index 9dc7466e..3cf680f6 100644 --- a/original/man2/sendfile.2 +++ b/original/man2/sendfile.2 @@ -12,7 +12,7 @@ .\" .\" 2005-03-31 Martin Pool mmap() improvements .\" -.TH SENDFILE 2 2010-12-03 "Linux" "Linux Programmer's Manual" +.TH SENDFILE 2 2011-09-14 "Linux" "Linux Programmer's Manual" .SH NAME sendfile \- transfer data between file descriptors .SH SYNOPSIS @@ -87,24 +87,20 @@ and the file offset will be updated by the call. .I count is the number of bytes to copy between the file descriptors. -Presently (Linux 2.6.9): -.IR in_fd , -must correspond to a file which supports +The +.IR in_fd +argument must correspond to a file which supports .BR mmap (2)-like operations -(i.e., it cannot be a socket); -and +(i.e., it cannot be a socket). + +In Linux kernels before 2.6.33, .I out_fd must refer to a socket. - -Applications may wish to fall back to -.BR read (2)/ write (2) -in the case where +Since Linux 2.6.33 it can be any file. +If it is a regular file, then .BR sendfile () -fails with -.B EINVAL -or -.BR ENOSYS . +changes the file offset appropriately. .SH "RETURN VALUE" If the transfer was successful, the number of bytes written to .I out_fd @@ -165,7 +161,7 @@ to minimize the number of packets and to tune performance. In Linux 2.4 and earlier, .I out_fd -could refer to a regular file, and +could also refer to a regular file, and .BR sendfile () changed the current offset of that file. @@ -180,6 +176,20 @@ argument. The glibc .BR sendfile () wrapper function transparently deals with the kernel differences. + +Applications may wish to fall back to +.BR read (2)/ write (2) +in the case where +.BR sendfile () +fails with +.B EINVAL +or +.BR ENOSYS . + +The Linux-specific +.BR splice (2) +call supports transferring data between arbitrary files +(e.g., a pair of sockets). .SH "SEE ALSO" .BR mmap (2), .BR open (2), diff --git a/original/man2/set_mempolicy.2 b/original/man2/set_mempolicy.2 index c265d574..5a26e16d 100644 --- a/original/man2/set_mempolicy.2 +++ b/original/man2/set_mempolicy.2 @@ -148,7 +148,7 @@ the memory policy reverts to .IR "local allocation" . This effectively overrides the specified policy until the process's cpuset context includes one or more of the nodes specified by -.IR nodemask. +.IR nodemask . The .B MPOL_DEFAULT diff --git a/original/man2/sigaction.2 b/original/man2/sigaction.2 index b7251ccb..4e23711e 100644 --- a/original/man2/sigaction.2 +++ b/original/man2/sigaction.2 @@ -42,7 +42,7 @@ .\" 2010-06-11 Andi Kleen, add hwpoison signal extensions .\" 2010-06-11 mtk, improvements to discussion of various siginfo_t fields. .\" -.TH SIGACTION 2 2010-06-16 "Linux" "Linux Programmer's Manual" +.TH SIGACTION 2 2011-09-08 "Linux" "Linux Programmer's Manual" .SH NAME sigaction \- examine and change a signal action .SH SYNOPSIS @@ -142,6 +142,11 @@ pointer to a as its second argument and a pointer to a .I ucontext_t (cast to \fIvoid\ *\fP) as its third argument. +(Commonly, the handler function doesn't make any use of the third argument. +See +.BR getcontext (2) +for further information about +.IR ucontext_t .) .PP .I sa_mask specifies a mask of signals which should be blocked @@ -290,16 +295,16 @@ read the fields that are meaningful for the given signal: Signals sent with .BR kill (2) and -.BR sigqueue (2) +.BR sigqueue (3) fill in .IR si_pid " and " si_uid . In addition, signals sent with -.BR sigqueue (2) +.BR sigqueue (3) fill in .IR si_int " and " si_ptr -with the values specified by the sender the signal; +with the values specified by the sender of the signal; see -.BR sigqueue (2) +.BR sigqueue (3) for more details. .IP * Signals sent by POSIX.1b timers (since Linux 2.6) fill in @@ -446,7 +451,7 @@ or Sent by the kernel. .TP .B SI_QUEUE -.BR sigqueue (2) +.BR sigqueue (3) .TP .B SI_TIMER POSIX timer expired @@ -784,11 +789,11 @@ See .BR signalfd (2), .BR sigpending (2), .BR sigprocmask (2), -.BR sigqueue (2), .BR sigsuspend (2), .BR wait (2), .BR raise (3), .BR siginterrupt (3), +.BR sigqueue (3), .BR sigsetops (3), .BR sigvec (3), .BR core (5), diff --git a/original/man2/signal.2 b/original/man2/signal.2 index 118d87ce..77c8111d 100644 --- a/original/man2/signal.2 +++ b/original/man2/signal.2 @@ -266,11 +266,11 @@ provides BSD semantics. .BR signalfd (2), .BR sigpending (2), .BR sigprocmask (2), -.BR sigqueue (2), .BR sigsuspend (2), .BR bsd_signal (3), .BR raise (3), .BR siginterrupt (3), +.BR sigqueue (3), .BR sigsetops (3), .BR sigvec (3), .BR sysv_signal (3), diff --git a/original/man2/signalfd.2 b/original/man2/signalfd.2 index 05d3b089..d114f166 100644 --- a/original/man2/signalfd.2 +++ b/original/man2/signalfd.2 @@ -183,8 +183,8 @@ struct signalfd_siginfo { uint32_t ssi_trapno; /* Trap number that caused signal */ .\" ssi_trapno is unused on most arches int32_t ssi_status; /* Exit status or signal (SIGCHLD) */ - int32_t ssi_int; /* Integer sent by sigqueue(2) */ - uint64_t ssi_ptr; /* Pointer sent by sigqueue(2) */ + int32_t ssi_int; /* Integer sent by sigqueue(3) */ + uint64_t ssi_ptr; /* Pointer sent by sigqueue(3) */ uint64_t ssi_utime; /* User CPU time consumed (SIGCHLD) */ uint64_t ssi_stime; /* System CPU time consumed (SIGCHLD) */ uint64_t ssi_addr; /* Address that generated signal @@ -352,7 +352,7 @@ In kernels before 2.6.25, the and .I ssi_int fields are not filled in with the data accompanying a signal sent by -.BR sigqueue (2). +.BR sigqueue (3). .\" The fix also was put into 2.6.24.5 .SH EXAMPLE The program below accepts the signals diff --git a/original/man2/sigprocmask.2 b/original/man2/sigprocmask.2 index d6e02336..bd4065dc 100644 --- a/original/man2/sigprocmask.2 +++ b/original/man2/sigprocmask.2 @@ -121,7 +121,7 @@ are generated while they are blocked, the result is undefined, unless the signal was generated by .BR kill (2), -.BR sigqueue (2), +.BR sigqueue (3), or .BR raise (3). .PP @@ -134,8 +134,8 @@ for details on manipulating signal sets. .BR sigaction (2), .BR signal (2), .BR sigpending (2), -.BR sigqueue (2), .BR sigsuspend (2), .BR pthread_sigmask (3), +.BR sigqueue (3), .BR sigsetops (3), .BR signal (7) diff --git a/original/man2/sigqueue.2 b/original/man2/sigqueue.2 index 6cfa6467..fee2bfb0 100644 --- a/original/man2/sigqueue.2 +++ b/original/man2/sigqueue.2 @@ -1,152 +1,2 @@ -.\" Copyright (c) 2002 Michael Kerrisk -.\" -.\" Permission is granted to make and distribute verbatim copies of this -.\" manual provided the copyright notice and this permission notice are -.\" preserved on all copies. -.\" -.\" Permission is granted to copy and distribute modified versions of this -.\" manual under the conditions for verbatim copying, provided that the -.\" entire resulting derived work is distributed under the terms of a -.\" permission notice identical to this one. -.\" -.\" Since the Linux kernel and libraries are constantly changing, this -.\" manual page may be incorrect or out-of-date. The author(s) assume no -.\" responsibility for errors or omissions, or for damages resulting from -.\" the use of the information contained herein. The author(s) may not -.\" have taken the same level of care in the production of this manual, -.\" which is licensed free of charge, as they might when working -.\" professionally. -.\" -.\" Formatted or processed versions of this manual, if unaccompanied by -.\" the source, must acknowledge the copyright and authors of this work. -.\" -.\" added note on self-signaling, aeb, 2002-06-07 -.\" added note on CAP_KILL, mtk, 2004-06-16 -.\" -.TH SIGQUEUE 2 2007-07-26 "Linux" "Linux Programmer's Manual" -.SH NAME -sigqueue, rt_sigqueueinfo \- queue a signal and data to a process -.SH SYNOPSIS -.B #include -.sp -.BI "int sigqueue(pid_t " pid ", int " sig ", const union sigval " value ); -.sp -.in -4n -Feature Test Macro Requirements for glibc (see -.BR feature_test_macros (7)): -.in -.sp -.BR sigqueue (): -_POSIX_C_SOURCE\ >=\ 199309L -.SH DESCRIPTION -.BR sigqueue () -sends the signal specified in -.I sig -to the process whose PID is given in -.IR pid . -The permissions required to send a signal are the same as for -.BR kill (2). -As with -.BR kill (2), -the null signal (0) can be used to check if a process with a given -PID exists. -.PP -The -.I value -argument is used to specify an accompanying item of data (either an integer -or a pointer value) to be sent with the signal, and has the following type: -.sp -.in +4n -.nf -union sigval { - int sival_int; - void *sival_ptr; -}; -.fi -.in - -If the receiving process has installed a handler for this signal using the -.B SA_SIGINFO -flag to -.BR sigaction (2), -then it can obtain this data via the -.I si_value -field of the -.I siginfo_t -structure passed as the second argument to the handler. -Furthermore, the -.I si_code -field of that structure will be set to -.BR SI_QUEUE . -.SH "RETURN VALUE" -On success, -.BR sigqueue () -returns 0, indicating that the signal was successfully -queued to the receiving process. -Otherwise \-1 is returned and -.I errno -is set to indicate the error. -.SH ERRORS -.TP -.B EAGAIN -The limit of signals which may be queued has been reached. -(See -.BR signal (7) -for further information.) -.TP -.B EINVAL -.I sig -was invalid. -.TP -.B EPERM -The process does not have permission to send the signal -to the receiving process. -For the required permissions, see -.BR kill (2). -.TP -.B ESRCH -No process has a PID matching -.IR pid . -.SH VERSIONS -This system call first appeared in Linux 2.2. -.SH "CONFORMING TO" -POSIX.1-2001. -.SH NOTES -If this function results in the sending of a signal to the process -that invoked it, and that signal was not blocked by the calling thread, -and no other threads were willing to handle this signal (either by -having it unblocked, or by waiting for it using -.BR sigwait (3)), -then at least some signal must be delivered to this thread before this -function returns. - -On Linux, the underlying system call is actually named -.BR rt_sigqueueinfo (), -and differs in its third argument, which is the -.I siginfo_t -structure that will be supplied to the receiving process's -signal handler or returned by the receiving process's -.BR sigtimedwait (2) -call. -Inside the glibc -.BR sigqueue () -wrapper, this argument, -.IR info , -is initialized as follows: -.in +4n -.nf - -info.si_signo = sig; /* argument supplied to sigqueue() */ -info.si_code = SI_QUEUE; -info.si_pid = getpid(); /* Process ID of sender */ -info.si_uid = getuid(); /* Real UID of sender */ -info.si_value = val; /* argument supplied to sigqueue() */ -.fi -.in -.SH "SEE ALSO" -.BR kill (2), -.BR sigaction (2), -.BR signal (2), -.BR pthread_sigqueue (3), -.BR sigwait (3), -.BR signal (7) +.so man3/sigqueue.3 +.\" FIXME . this link will eventually be removed (created Sep 2011) diff --git a/original/man2/sigwaitinfo.2 b/original/man2/sigwaitinfo.2 index d0a53743..a7376a18 100644 --- a/original/man2/sigwaitinfo.2 +++ b/original/man2/sigwaitinfo.2 @@ -177,7 +177,7 @@ is a library function implemented on top of .BR signalfd (2), .BR sigpending (2), .BR sigprocmask (2), -.BR sigqueue (2), +.BR sigqueue (3), .BR sigsetops (3), .BR sigwait (3), .BR signal (7), diff --git a/original/man2/spu_run.2 b/original/man2/spu_run.2 index 3caf7348..2cb891f7 100644 --- a/original/man2/spu_run.2 +++ b/original/man2/spu_run.2 @@ -222,7 +222,7 @@ int main(void) uint32_t instruction, npc; context = spu_create("/spu/example\-context", 0, 0755); - if (context == -1) + if (context == \-1) handle_error("spu_create"); /* write a \(aqstop 0x1234\(aq instruction to the SPU\(aqs @@ -231,7 +231,7 @@ int main(void) instruction = 0x00001234; fd = open("/spu/example\-context/mem", O_RDWR); - if (fd == -1) + if (fd == \-1) handle_error("open"); write(fd, &instruction, sizeof(instruction)); @@ -242,7 +242,7 @@ int main(void) npc = 0; spu_status = spu_run(context, &npc, NULL); - if (spu_status == -1) + if (spu_status == \-1) handle_error("open"); /* we should see a status code of 0x1234002: diff --git a/original/man2/stat.2 b/original/man2/stat.2 index 1aadf321..82016b84 100644 --- a/original/man2/stat.2 +++ b/original/man2/stat.2 @@ -322,7 +322,8 @@ Bad address. Too many symbolic links encountered while traversing the path. .TP .B ENAMETOOLONG -File name too long. +.I path +is too long. .TP .B ENOENT A component of diff --git a/original/man2/sync.2 b/original/man2/sync.2 index 71396f6d..047b1834 100644 --- a/original/man2/sync.2 +++ b/original/man2/sync.2 @@ -1,6 +1,7 @@ .\" Hey Emacs! This file is -*- nroff -*- source. .\" .\" Copyright (c) 1992 Drew Eckhardt (drew@cs.colorado.edu), March 28, 1992 +.\" and Copyright (c) 2011 Michael Kerrisk .\" .\" Permission is granted to make and distribute verbatim copies of this .\" manual provided the copyright notice and this permission notice are @@ -30,15 +31,18 @@ .\" Added the fact that since 1.3.20 sync actually waits. .\" Modified Tue Oct 22 22:27:07 1996 by Eric S. Raymond .\" Modified 2001-10-10 by aeb, following Michael Kerrisk. +.\" 2011-09-07, mtk, Added syncfs() documentation, .\" -.TH SYNC 2 2010-09-20 "Linux" "Linux Programmer's Manual" +.TH SYNC 2 2011-09-07 "Linux" "Linux Programmer's Manual" .SH NAME -sync \- commit buffer cache to disk +sync, syncfs \- commit buffer cache to disk .SH SYNOPSIS .B #include .sp .B void sync(void); .sp +.BI "void syncfs(int " fd ); +.sp .in -4n Feature Test Macro Requirements for glibc (see .BR feature_test_macros (7)): @@ -51,15 +55,53 @@ _BSD_SOURCE || _XOPEN_SOURCE\ >=\ 500 || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED .RE .ad +.sp +.BR syncfs (): +.ad l +.RS 4 +_GNU_SOURCE +.RE +.ad .SH DESCRIPTION .BR sync () -first commits inodes to buffers, and then buffers to disk. +causes all buffered modifications to file metadata and data to be +written to the underlying file systems. + +.BR syncfs () +is like +.BR sync (), +but synchronizes just the file system containing file +referred to by the open file descriptor +.IR fd . +.SH RETURN VALUE +.BR syncfs () +returns 0 on success; +on error, it returns \-1 and sets +.I errno +to indicate the error. .SH ERRORS -This function is always successful. +.BR sync () +is always successful. + +.BR syncfs () +can fail for at least the following reason: +.TP +.B EBADF +.I fd +is not a valid file descriptor. +.SH VERSIONS +.BR syncfs () +first appeared in Linux 2.6.39. .SH "CONFORMING TO" +.BR sync (): SVr4, 4.3BSD, POSIX.1-2001. + +.BR syncfs () +is Linux-specific. .SH NOTES -Since glibc 2.2.2 the Linux prototype is as listed above, +Since glibc 2.2.2 the Linux prototype for +.BR sync () +is as listed above, following the various standards. In libc4, libc5, and glibc up to 2.2.1 it was "int sync(void)", and diff --git a/original/man2/syncfs.2 b/original/man2/syncfs.2 new file mode 100644 index 00000000..55557982 --- /dev/null +++ b/original/man2/syncfs.2 @@ -0,0 +1 @@ +.so man2/sync.2 diff --git a/original/man2/syscalls.2 b/original/man2/syscalls.2 index 8d21312c..dd114289 100644 --- a/original/man2/syscalls.2 +++ b/original/man2/syscalls.2 @@ -26,7 +26,7 @@ .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" -.TH SYSCALLS 2 2010-11-06 "Linux" "Linux Programmer's Manual" +.TH SYSCALLS 2 2011-09-07 "Linux" "Linux Programmer's Manual" .SH NAME syscalls \- Linux system calls .SH SYNOPSIS @@ -130,6 +130,8 @@ Starting with kernel 2.6.0, the development model changed, and new system calls may appear in each 2.6.x release. In this case, the exact version number where the system call appeared is shown. +This convention continues with the 3.x kernel series, +which followed on from kernel 2.6.39. .IP * In some cases, a system call was added to a stable kernel series after it branched from the previous stable kernel @@ -139,7 +141,7 @@ into a 2.4.x release after 2.4.15. When this is so, the version where the system call appeared in both of the major kernel series is listed. .PP -The list of system calls that are available as at kernel 2.6.33 +The list of system calls that are available as at kernel 3.1 (or in a few cases only on older kernels) is as follows: .\" .\" Looking at scripts/checksyscalls.sh in the kernel source is @@ -175,6 +177,7 @@ l l l. \fBchown\fP(2) \fBchown32\fP(2) 2.4 \fBchroot\fP(2) +\fBclock_adjtime\fP(2) 2.6.39 \fBclock_getres\fP(2) 2.6 \fBclock_gettime\fP(2) 2.6 \fBclock_nanosleep\fP(2) 2.6 @@ -203,6 +206,10 @@ l l l. .\" Implements \fBposix_fadvise\fP(2) \fBfadvise64_64\fP(2) 2.6 \fBfallocate\fP(2) 2.6.23 +\fBfanotify_init\fP(2) 2.6.37 +\fBfanotify_mark\fP(2) 2.6.37 +.\" The fanotify calls were added in Linux 2.6.36, +.\" but disabled while the API was finalized. \fBfchdir\fP(2) \fBfchmod\fP(2) \fBfchmodat\fP(2) 2.6.16 @@ -348,6 +355,7 @@ l l l. \fBmunlock\fP(2) \fBmunlockall\fP(2) \fBmunmap\fP(2) +\fBname_to_handle_at\fP(2) 2.6.39 \fBnanosleep\fP(2) 2.0 \fBnfsservctl\fP(2) 2.2 \fBnice\fP(2) @@ -357,6 +365,7 @@ l l l. \fBoldstat\fP(2) \fBolduname\fP(2) \fBopen\fP(2) +\fBopen_by_handle_at\fP(2) 2.6.39 \fBopenat\fP(2) 2.6.16 \fBpause\fP(2) \fBpciconfig_iobase\fP(2) 2.2.15; 2.4 Not on i386 @@ -418,12 +427,10 @@ l l l. \fBrt_sigpending\fP(2) 2.2 \fBrt_sigprocmask\fP(2) 2.2 \fBrt_sigqueueinfo\fP(2) 2.2 -.\" Implements \fBsigqueue\fP(2) \fBrt_sigreturn\fP(2) 2.2 \fBrt_sigsuspend\fP(2) 2.2 \fBrt_sigtimedwait\fP(2) 2.2 \fBrt_tgsigqueueinfo\fP(2) 2.6.31 -.\" Implements \fBpthread_sigqueue\fP(3) \fBsched_get_priority_max\fP(2) 2.0 \fBsched_get_priority_min\fP(2) 2.0 \fBsched_getaffinity\fP(2) 2.6 @@ -443,6 +450,7 @@ l l l. \fBsend\fP(2) \fBsendfile\fP(2) 2.2 \fBsendfile64\fP(2) 2.6; 2.4.19 +\fBsendmmsg\fP(2) 3.0 \fBsendmsg\fP(2) \fBsendto\fP(2) \fBset_mempolicy\fP(2) 2.6.6 @@ -464,6 +472,7 @@ l l l. \fBsetgroups32\fP(2) 2.4 \fBsethostname\fP(2) \fBsetitimer\fP(2) +\fBsetns\fP(2) 3.0 \fBsetpgid\fP(2) \fBsetpriority\fP(2) \fBsetregid\fP(2) @@ -519,6 +528,7 @@ l l l. \fBsync\fP(2) \fBsync_file_range\fP(2) 2.6.17 \fBsync_file_range2\fP(2) 2.6.22 Architecture-specific variant +\fBsyncfs\fP(2) 2.6.39 .\" PowerPC, ARM, tile .\" First appeared on ARM, as arm_sync_file_range(), but later renamed of \fBsync_file_range\fP(2) diff --git a/original/man2/syslog.2 b/original/man2/syslog.2 index fb018a63..cb101bde 100644 --- a/original/man2/syslog.2 +++ b/original/man2/syslog.2 @@ -26,7 +26,7 @@ .\" 2008-02-15, Michael Kerrisk .\" Update LOG_BUF_LEN details; update RETURN VALUE section. .\" -.TH SYSLOG 2 2008-06-20 "Linux" "Linux Programmer's Manual" +.TH SYSLOG 2 2011-09-07 "Linux" "Linux Programmer's Manual" .SH NAME syslog, klogctl \- read and/or clear kernel message ring buffer; set console_loglevel @@ -50,33 +50,43 @@ then look at .BR syslog (3). The system call of this name is about controlling the kernel .IR printk () -buffer, and the glibc version is called +buffer, and the glibc wrapper function is called .BR klogctl (). -The \fItype\fP argument determines the action taken by this function. +The \fItype\fP argument determines the action taken by this function, +as follows: -Quoting from -.IR kernel/printk.c : .nf -/* - * Commands to sys_syslog: - * - * 0 \-\- Close the log. Currently a NOP. - * 1 \-\- Open the log. Currently a NOP. - * 2 \-\- Read from the log. - * 3 \-\- Read all messages remaining in the ring buffer. - * 4 \-\- Read and clear all messages remaining in the ring buffer - * 5 \-\- Clear ring buffer. - * 6 \-\- Disable printk to console - * 7 \-\- Enable printk to console - * 8 \-\- Set level of messages printed to console - * 9 \-\- Return number of unread characters in the log buffer - * 10 \-\- Return size of the log buffer - */ + 0 \-\- Close the log. Currently a NOP. + 1 \-\- Open the log. Currently a NOP. + 2 \-\- Read from the log. + 3 \-\- Read all messages remaining in the ring buffer. + 4 \-\- Read and clear all messages remaining in the ring buffer + 5 \-\- Clear ring buffer. + 6 \-\- Disable printk to console + 7 \-\- Enable printk to console + 8 \-\- Set level of messages printed to console + 9 \-\- Return number of unread characters in the log buffer + 10 \-\- Return size of the log buffer .fi -Only command types 3 and 10 are allowed to unprivileged processes. -Type 9 was added in 2.4.10; type 10 in 2.6.6. +Type 9 was added in Linux 2.4.10; type 10 in Linux 2.6.6. + +In Linux kernels before 2.6.37, +only command types 3 and 10 are allowed to unprivileged processes. +Since Linux 2.6.37, +command types 3 and 10 are only allowed to unprivileged processes if +.IR /proc/sys/kernel/dmesg_restrict +has the value 0. +Before Linux 2.6.37, "privileged" means that the caller has the +.BR CAP_SYS_ADMIN +capability. +Since Linux 2.6.37, +"privileged" means that the caller has either the +.BR CAP_SYS_ADMIN +capability (now deprecated for this purpose) or the (new) +.BR CAP_SYSLOG +capability. .SS The kernel log buffer The kernel has a cyclic buffer of length .B LOG_BUF_LEN @@ -237,6 +247,8 @@ An attempt was made to change console_loglevel or clear the kernel message ring buffer by a process without sufficient privilege (more precisely: without the .B CAP_SYS_ADMIN +or +.BR CAP_SYSLOG capability). .TP .B ERESTARTSYS @@ -254,4 +266,5 @@ In libc4 and libc5 the number of this call was defined by In glibc 2.0 the syscall is baptized .BR klogctl (). .SH "SEE ALSO" -.BR syslog (3) +.BR syslog (3), +.BR capabilities (7) diff --git a/original/man2/tee.2 b/original/man2/tee.2 index bfe78069..2f13ecc7 100644 --- a/original/man2/tee.2 +++ b/original/man2/tee.2 @@ -149,8 +149,8 @@ main(int argc, char *argv[]) int len, slen; if (argc != 2) { - fprintf(stderr, "Usage: %s \\n", argv[0]); - exit(EXIT_FAILURE); + fprintf(stderr, "Usage: %s \\n", argv[0]); + exit(EXIT_FAILURE); } fd = open(argv[1], O_WRONLY | O_CREAT | O_TRUNC, 0644); diff --git a/original/man2/time.2 b/original/man2/time.2 index bc2eacae..a03d0f58 100644 --- a/original/man2/time.2 +++ b/original/man2/time.2 @@ -26,7 +26,7 @@ .\" Modified Sat Jul 24 14:13:40 1993 by Rik Faith .\" Additions by Joseph S. Myers , 970909 .\" -.TH TIME 2 2010-02-25 "Linux" "Linux Programmer's Manual" +.TH TIME 2 2011-09-09 "Linux" "Linux Programmer's Manual" .SH NAME time \- get time in seconds .SH SYNOPSIS @@ -61,16 +61,18 @@ POSIX does not specify any error conditions. .SH NOTES POSIX.1 defines .I seconds since the Epoch -as a value to be interpreted as the number of seconds between a -specified time and the Epoch, according to a formula for conversion -from UTC equivalent to conversion on the naive basis that leap -seconds are ignored and all years divisible by 4 are leap years. +using a formula that approximates the number of seconds between a +specified time and the Epoch. +This formula takes account of the facts that +all years that are evenly divisible by 4 are leap years, +but years that are evenly divisible by 100 are not leap years +unless they are also evenly divisible by 400, +in which case they are leap years. This value is not the same as the actual number of seconds between the time -and the Epoch, because of leap seconds and because clocks are not +and the Epoch, because of leap seconds and because system clocks are not required to be synchronized to a standard reference. -The intention is -that the interpretation of seconds since the Epoch values be -consistent; see POSIX.1 Annex B 2.2.2 for further rationale. +The intention is that the interpretation of seconds since the Epoch values be +consistent; see POSIX.1-2008 Rationale A.4.15 for further rationale. .SH "SEE ALSO" .BR date (1), .BR gettimeofday (2), diff --git a/original/man2/timer_create.2 b/original/man2/timer_create.2 index b38b5730..ae121f3c 100644 --- a/original/man2/timer_create.2 +++ b/original/man2/timer_create.2 @@ -20,6 +20,12 @@ .\" .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. +.\" +.\" FIXME: Linux 2.6.39 adds CLOCK_BOOTTIME +.\" Does this also affect timerfd_create()? +.\" FIXME: Linux 2.3.0 adds CLOCK_BOOTTIME_ALARM and CLOCK_REALTIME_ALARM +.\" Does this also affect timerfd_create()? +.\" .TH TIMER_CREATE 2 2010-09-27 Linux "Linux Programmer's Manual" .SH NAME timer_create \- create a POSIX per-process timer @@ -262,7 +268,7 @@ there have been around ten million overruns. .in +4n .nf -$ \fB./a.out 1 10\fP +$ \fB./a.out 1 100\fP Establishing handler for signal 34 Blocking signal 34 timer ID is 0x804c008 diff --git a/original/man2/timerfd_create.2 b/original/man2/timerfd_create.2 index c09e0309..51c2bcff 100644 --- a/original/man2/timerfd_create.2 +++ b/original/man2/timerfd_create.2 @@ -15,7 +15,9 @@ .\" Foundation, Inc., 59 Temple Place, Suite 330, Boston, .\" MA 02111-1307 USA .\" -.TH TIMERFD_CREATE 2 2009-03-10 Linux "Linux Programmer's Manual" +.\" FIXME: Linux 3.0: timerfd_settime() adds a TFD_TIMER_CANCEL_ON_SET flag. +.\" +.TH TIMERFD_CREATE 2 2011-09-14 Linux "Linux Programmer's Manual" .SH NAME timerfd_create, timerfd_settime, timerfd_gettime \- timers that notify via file descriptors @@ -152,7 +154,7 @@ are zero, the timer expires just once, at the time specified by The .I flags argument is either 0, to start a relative timer -.RI ( new_value.it_interval +.RI ( new_value.it_value specifies a time relative to the current value of the clock specified by .IR clockid ), or @@ -165,10 +167,13 @@ that is, the timer will expire when the value of that clock reaches the value specified in .IR new_value.it_value ). -The +If the .I old_value -argument returns a structure containing the setting of the timer that -was current at the time of the call; see the description of +argument is not NULL, then the +.I itimerspec +structure that it points to is used to return the setting of the timer +that was current at the time of the call; +see the description of .BR timerfd_gettime () following. .\" diff --git a/original/man2/tkill.2 b/original/man2/tkill.2 index a9a2c3a4..0df2d65e 100644 --- a/original/man2/tkill.2 +++ b/original/man2/tkill.2 @@ -26,7 +26,7 @@ .\" 2004-05-31, added tgkill, ahu, aeb .\" 2008-01-15 mtk -- rewote DESCRIPTION .\" -.TH TKILL 2 2008-10-01 "Linux" "Linux Programmer's Manual" +.TH TKILL 2 2011-09-18 "Linux" "Linux Programmer's Manual" .SH NAME tkill, tgkill \- send a signal to a thread .SH SYNOPSIS @@ -105,4 +105,5 @@ Glibc does not provide wrappers for these system calls; call them using .SH "SEE ALSO" .BR clone (2), .BR gettid (2), -.BR kill (2) +.BR kill (2), +.BR rt_sigqueueinfo (2) diff --git a/original/man2/truncate.2 b/original/man2/truncate.2 index fb388b29..276731fd 100644 --- a/original/man2/truncate.2 +++ b/original/man2/truncate.2 @@ -38,7 +38,7 @@ .\" Modified 2002-04-06 by Andries Brouwer .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH TRUNCATE 2 2010-11-21 "Linux" "Linux Programmer's Manual" +.TH TRUNCATE 2 2011-09-08 "Linux" "Linux Programmer's Manual" .SH NAME truncate, ftruncate \- truncate a file to a specified length .SH SYNOPSIS @@ -130,7 +130,11 @@ The argument is larger than the maximum file size. (XSI) .TP .B EINTR -A signal was caught during execution. +While blocked waiting to complete, +the call was interrupted by a signal handler; see +.BR fcntl (2) +and +.BR signal (7). .TP .B EINVAL The argument @@ -140,13 +144,6 @@ is negative or larger than the maximum file size. .B EIO An I/O error occurred updating the inode. .TP -.B EINTR -While blocked waiting to complete, -the call was interrupted by a signal handler; see -.BR fcntl (2) -and -.BR signal (7). -.TP .B EISDIR The named file is a directory. .TP diff --git a/original/man2/unlink.2 b/original/man2/unlink.2 index a700ebf4..79aaf070 100644 --- a/original/man2/unlink.2 +++ b/original/man2/unlink.2 @@ -29,7 +29,7 @@ .\" Modified 2001-05-17 by aeb .\" Modified 2004-06-23 by Michael Kerrisk .\" -.TH UNLINK 2 2004-06-23 "Linux" "Linux Programmer's Manual" +.TH UNLINK 2 2011-09-15 "Linux" "Linux Programmer's Manual" .SH NAME unlink \- delete a name and possibly the file it refers to .SH SYNOPSIS @@ -69,11 +69,14 @@ did not allow search permission. (See also .BR path_resolution (7).) .TP -.BR EBUSY " (not on Linux)" +.BR EBUSY The file .I pathname cannot be unlinked because it is being used by the system -or another process and the implementation considers this an error. +or another process; +for example, it is a mount point +or the NFS client software created it to represent an +active but otherwise nameless inode ("NFS silly renamed"). .TP .B EFAULT .I pathname diff --git a/original/man3/atan2.3 b/original/man3/atan2.3 index 5d837ca4..e973ade4 100644 --- a/original/man3/atan2.3 +++ b/original/man3/atan2.3 @@ -147,13 +147,13 @@ If .I y is positive infinity (negative infinity) and .I x -is negative infinity, +3*pi/4 (-3*pi/4) is returned. +is negative infinity, +3*pi/4 (\-3*pi/4) is returned. If .I y is positive infinity (negative infinity) and .I x -is positive infinity, +pi/4 (-pi/4) is returned. +is positive infinity, +pi/4 (\-pi/4) is returned. .\" .\" POSIX.1 says: .\" If both arguments are 0, a domain error shall not occur. diff --git a/original/man3/btowc.3 b/original/man3/btowc.3 index dde646be..c3b49a1e 100644 --- a/original/man3/btowc.3 +++ b/original/man3/btowc.3 @@ -11,7 +11,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH BTOWC 3 2009-02-04 "GNU" "Linux Programmer's Manual" +.TH BTOWC 3 2011-09-22 "GNU" "Linux Programmer's Manual" .SH NAME btowc \- convert single byte to wide character .SH SYNOPSIS @@ -58,9 +58,12 @@ This function should never be used. It does not work for encodings which have state, and unnecessarily treats single bytes differently from multibyte sequences. -Use the function -.BR mbtowc () +Use either +.BR mbtowc (3) +or the thread-safe +.BR mbrtowc (3) instead. .SH "SEE ALSO" .BR mbtowc (3), +.BR mbrtowc (3), .BR wctob (3) diff --git a/original/man3/cacos.3 b/original/man3/cacos.3 index b483a0cf..0b275d87 100644 --- a/original/man3/cacos.3 +++ b/original/man3/cacos.3 @@ -1,7 +1,8 @@ .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de) +.\" and Copyright (C) 2011 Michael Kerrisk .\" Distributed under GPL .\" -.TH CACOS 3 2008-08-11 "" "Linux Programmer's Manual" +.TH CACOS 3 2011-09-15 "" "Linux Programmer's Manual" .SH NAME cacos, cacosf, cacosl \- complex arc cosine .SH SYNOPSIS @@ -27,12 +28,45 @@ is chosen in the interval [0,pi]. One has: .nf - cacos(z) = \-i clog(z + csqrt(z * z \- 1)) + cacos(z) = \-i * clog(z + i * csqrt(1 \- z * z)) .fi .SH VERSIONS These functions first appeared in glibc in version 2.1. .SH "CONFORMING TO" C99. +.SH EXAMPLE +.nf +/* Link with "\-lm" */ + +#include +#include +#include +#include + +int +main(int argc, char *argv[]) +{ + double complex z, c, f; + double complex i = I; + + if (argc != 3) { + fprintf(stderr, "Usage: %s \\n", argv[0]); + exit(EXIT_FAILURE); + } + + z = atof(argv[1]) + atof(argv[2]) * I; + + c = cacos(z); + + printf("cacos() = %6.3f %6.3f*i\\n", creal(c), cimag(c)); + + f = \-i * clog(z + i * csqrt(1 \- z * z)); + + printf("formula = %6.3f %6.3f*i\\n", creal(f), cimag(f)); + + exit(EXIT_SUCCESS); +} +.fi .SH "SEE ALSO" .BR ccos (3), .BR clog (3), diff --git a/original/man3/cacosh.3 b/original/man3/cacosh.3 index 7bf60c99..8a894aad 100644 --- a/original/man3/cacosh.3 +++ b/original/man3/cacosh.3 @@ -1,7 +1,8 @@ .\" Copyright 2002 Walter Harms(walter.harms@informatik.uni-oldenburg.de) +.\" and Copyright (C) 2011 Michael Kerrisk .\" Distributed under GPL .\" -.TH CACOSH 3 2008-08-11 "" "Linux Programmer's Manual" +.TH CACOSH 3 2011-09-15 "" "Linux Programmer's Manual" .SH NAME cacosh, cacoshf, cacoshl \- complex arc hyperbolic cosine .SH SYNOPSIS @@ -30,14 +31,45 @@ is chosen nonnegative. One has: .nf - cacosh(z) = (0.5) * clog((1 + z) / (1 \- z)) + cacosh(z) = 2 * clog(csqrt((z + 1) / 2) + csqrt((z \- 1) / 2)) .fi .SH VERSIONS These functions first appeared in glibc in version 2.1. .SH "CONFORMING TO" C99. +.SH EXAMPLE +.nf +/* Link with "\-lm" */ + +#include +#include +#include +#include + +int +main(int argc, char *argv[]) +{ + double complex z, c, f; + + if (argc != 3) { + fprintf(stderr, "Usage: %s \\n", argv[0]); + exit(EXIT_FAILURE); + } + + z = atof(argv[1]) + atof(argv[2]) * I; + + c = cacosh(z); + printf("cacosh() = %6.3f %6.3f*i\\n", creal(c), cimag(c)); + + f = 2 * clog(csqrt((z + 1)/2) + csqrt((z \- 1)/2)); + printf("formula = %6.3f %6.3f*i\\n", creal(f2), cimag(f2)); + + exit(EXIT_SUCCESS); +} +.fi .SH "SEE ALSO" .BR acosh (3), .BR cabs (3), +.BR ccosh (3), .BR cimag (3), .BR complex (7) diff --git a/original/man3/carg.3 b/original/man3/carg.3 index 32d182aa..c8ca68c0 100644 --- a/original/man3/carg.3 +++ b/original/man3/carg.3 @@ -3,7 +3,7 @@ .\" .TH CARG 3 2008-08-11 "" "Linux Programmer's Manual" .SH NAME -carg, cargf, cargl \- calculate the argument +carg, cargf, cargl \- calculate the complex argument .SH SYNOPSIS .B #include .sp diff --git a/original/man3/casin.3 b/original/man3/casin.3 index f4ff4716..d64c489c 100644 --- a/original/man3/casin.3 +++ b/original/man3/casin.3 @@ -34,6 +34,6 @@ These functions first appeared in glibc in version 2.1. .SH "CONFORMING TO" C99. .SH "SEE ALSO" -.BR ccos (3), .BR clog (3), +.BR csin (3), .BR complex (7) diff --git a/original/man3/casinh.3 b/original/man3/casinh.3 index 4f35e77f..e2a001cd 100644 --- a/original/man3/casinh.3 +++ b/original/man3/casinh.3 @@ -37,4 +37,5 @@ C99. .BR asinh (3), .BR cabs (3), .BR cimag (3), +.BR csinh (3), .BR complex (7) diff --git a/original/man3/catan.3 b/original/man3/catan.3 index 30692bb3..680fce2e 100644 --- a/original/man3/catan.3 +++ b/original/man3/catan.3 @@ -1,7 +1,8 @@ .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de) +.\" and Copyright (C) 2011 Michael Kerrisk .\" Distributed under GPL .\" -.TH CATAN 3 2008-08-11 "" "Linux Programmer's Manual" +.TH CATAN 3 2011-09-15 "" "Linux Programmer's Manual" .SH NAME catan, catanf, catanl \- complex arc tangents .SH SYNOPSIS @@ -25,13 +26,45 @@ The real part of y is chosen in the interval [\-pi/2,pi/2]. One has: .nf - catan(z) = 1 / 2i clog((1 + iz) / (1 \- iz)) + catan(z) = (clog(1 + i * z) \- clog(1 \- i * z)) / (2 * i) .fi .SH VERSIONS These functions first appeared in glibc in version 2.1. .SH "CONFORMING TO" C99. +.SH EXAMPLE +.nf +/* Link with "\-lm" */ + +#include +#include +#include +#include + +int +main(int argc, char *argv[]) +{ + double complex z, c, f; + double complex i = I; + + if (argc != 3) { + fprintf(stderr, "Usage: %s \\n", argv[0]); + exit(EXIT_FAILURE); + } + + z = atof(argv[1]) + atof(argv[2]) * I; + + c = catan(z); + printf("catan() = %6.3f %6.3f*i\\n", creal(c), cimag(c)); + + f = (clog(1 + i * z) \- clog(1 \- i * z)) / (2 * i); + printf("formula = %6.3f %6.3f*i\\n", creal(f2), cimag(f2)); + + exit(EXIT_SUCCESS); +} +.fi .SH "SEE ALSO" .BR ccos (3), .BR clog (3), +.BR ctan (3), .BR complex (7) diff --git a/original/man3/catanh.3 b/original/man3/catanh.3 index e3960218..5a85d8a6 100644 --- a/original/man3/catanh.3 +++ b/original/man3/catanh.3 @@ -1,7 +1,8 @@ .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de) +.\" and Copyright (C) 2011 Michael Kerrisk .\" Distributed under GPL .\" -.TH CATANH 3 2008-08-11 "" "Linux Programmer's Manual" +.TH CATANH 3 2011-09-15 "" "Linux Programmer's Manual" .SH NAME catanh, catanhf, catanhl \- complex arc tangents hyperbolic .SH SYNOPSIS @@ -27,14 +28,45 @@ is chosen in the interval [\-pi/2,pi/2]. One has: .nf - catanh(z) = 0.5 * clog((1 + z) / (1 \- z)) + catanh(z) = 0.5 * (clog(1 + z) \- clog(1 \- z)) .fi .SH VERSIONS These functions first appeared in glibc in version 2.1. .SH "CONFORMING TO" C99. +.SH EXAMPLE +.nf +/* Link with "\-lm" */ + +#include +#include +#include +#include + +int +main(int argc, char *argv[]) +{ + double complex z, c, f; + + if (argc != 3) { + fprintf(stderr, "Usage: %s \\n", argv[0]); + exit(EXIT_FAILURE); + } + + z = atof(argv[1]) + atof(argv[2]) * I; + + c = catanh(z); + printf("catanh() = %6.3f %6.3f*i\\n", creal(c), cimag(c)); + + f = 0.5 * (clog(1 + z) \- clog(1 \- z)); + printf("formula = %6.3f %6.3f*i\\n", creal(f2), cimag(f2)); + + exit(EXIT_SUCCESS); +} +.fi .SH "SEE ALSO" .BR atanh (3), .BR cabs (3), .BR cimag (3), +.BR ctanh (3), .BR complex (7) diff --git a/original/man3/cbrt.3 b/original/man3/cbrt.3 index b2563c15..041d4016 100644 --- a/original/man3/cbrt.3 +++ b/original/man3/cbrt.3 @@ -79,7 +79,7 @@ These functions return the cube root of If .I x -is +0, -0, positive infinity, negative infinity, or NaN, +is +0, \-0, positive infinity, negative infinity, or NaN, .I x is returned. .SH ERRORS diff --git a/original/man3/ccos.3 b/original/man3/ccos.3 index 8f35a905..ce401461 100644 --- a/original/man3/ccos.3 +++ b/original/man3/ccos.3 @@ -26,6 +26,7 @@ These functions first appeared in glibc in version 2.1. C99. .SH "SEE ALSO" .BR cabs (3), +.BR cacos (3), .BR csin (3), .BR ctan (3), .BR complex (7) diff --git a/original/man3/ccosh.3 b/original/man3/ccosh.3 index eb00c3ae..179631a1 100644 --- a/original/man3/ccosh.3 +++ b/original/man3/ccosh.3 @@ -26,6 +26,7 @@ These functions first appeared in glibc in version 2.1. C99. .SH "SEE ALSO" .BR cabs (3), +.BR cacosh (3), .BR csinh (3), .BR ctanh (3), .BR complex (7) diff --git a/original/man3/cexp.3 b/original/man3/cexp.3 index e5a96e7f..4ee4a9d1 100644 --- a/original/man3/cexp.3 +++ b/original/man3/cexp.3 @@ -30,6 +30,7 @@ These functions first appeared in glibc in version 2.1. C99. .SH "SEE ALSO" .BR cabs (3), +.BR cexp2 (3), .BR clog (3), .BR cpow (3), .BR complex (7) diff --git a/original/man3/clock_getcpuclockid.3 b/original/man3/clock_getcpuclockid.3 index a939b9bb..76e65cd8 100644 --- a/original/man3/clock_getcpuclockid.3 +++ b/original/man3/clock_getcpuclockid.3 @@ -134,7 +134,7 @@ main(int argc, char *argv[]) exit(EXIT_FAILURE); } - if (clock_gettime(clockid, &ts) == -1) { + if (clock_gettime(clockid, &ts) == \-1) { perror("clock_gettime"); exit(EXIT_FAILURE); } diff --git a/original/man3/clog.3 b/original/man3/clog.3 index f158069b..c2379dd4 100644 --- a/original/man3/clog.3 +++ b/original/man3/clog.3 @@ -41,4 +41,5 @@ C99. .BR cabs (3), .BR cexp (3), .BR clog10 (3), +.BR clog2 (3), .BR complex (7) diff --git a/original/man3/cmsg.3 b/original/man3/cmsg.3 index 8c63effd..9455918e 100644 --- a/original/man3/cmsg.3 +++ b/original/man3/cmsg.3 @@ -105,7 +105,7 @@ Use on the .I msghdr to get the first control message and -.BR CMSG_NEXTHDR () +.BR CMSG_NXTHDR () to get all subsequent ones. In each control message, initialize .I cmsg_len diff --git a/original/man3/conj.3 b/original/man3/conj.3 index dd376d97..1140027d 100644 --- a/original/man3/conj.3 +++ b/original/man3/conj.3 @@ -32,5 +32,5 @@ These functions first appeared in glibc in version 2.1. C99. .SH "SEE ALSO" .BR cabs (3), -.BR sqrt (3), +.BR csqrt (3), .BR complex (7) diff --git a/original/man3/crypt.3 b/original/man3/crypt.3 index c6f48264..f78181d2 100644 --- a/original/man3/crypt.3 +++ b/original/man3/crypt.3 @@ -32,7 +32,7 @@ .\" added _XOPEN_SOURCE, aeb, 970705 .\" added GNU MD5 stuff, aeb, 011223 .\" -.TH CRYPT 3 2010-06-20 "" "Linux Programmer's Manual" +.TH CRYPT 3 2011-09-15 "" "Linux Programmer's Manual" .SH NAME crypt, crypt_r \- password and data encryption .SH SYNOPSIS @@ -43,6 +43,10 @@ crypt, crypt_r \- password and data encryption .sp .BI "char *crypt(const char *" key ", const char *" salt ); .sp +.BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" +.br +.B #include +.sp .BI "char *crypt_r(const char *" key ", const char *" salt , .BI " struct crypt_data *" data ); .fi diff --git a/original/man3/csin.3 b/original/man3/csin.3 index 452befd8..2c07d67e 100644 --- a/original/man3/csin.3 +++ b/original/man3/csin.3 @@ -26,6 +26,7 @@ These functions first appeared in glibc in version 2.1. C99. .SH "SEE ALSO" .BR cabs (3), +.BR casin (3), .BR ccos (3), .BR ctan (3), .BR complex (7) diff --git a/original/man3/csinh.3 b/original/man3/csinh.3 index 52f08713..31a14092 100644 --- a/original/man3/csinh.3 +++ b/original/man3/csinh.3 @@ -26,6 +26,7 @@ These functions first appeared in glibc in version 2.1. C99. .SH "SEE ALSO" .BR cabs (3), +.BR casinh (3), .BR ccosh (3), .BR ctanh (3), .BR complex (7) diff --git a/original/man3/ctan.3 b/original/man3/ctan.3 index fedfa7f7..7964580a 100644 --- a/original/man3/ctan.3 +++ b/original/man3/ctan.3 @@ -26,6 +26,7 @@ These functions first appeared in glibc in version 2.1. C99. .SH "SEE ALSO" .BR cabs (3), +.BR catan (3), .BR ccos (3), .BR csin (3), .BR complex (7) diff --git a/original/man3/ctanh.3 b/original/man3/ctanh.3 index 25928d28..11647694 100644 --- a/original/man3/ctanh.3 +++ b/original/man3/ctanh.3 @@ -27,6 +27,7 @@ These functions first appeared in glibc in version 2.1. C99. .SH "SEE ALSO" .BR cabs (3), +.BR catanh (3), .BR ccosh (3), .BR csinh (3), .BR complex (7) diff --git a/original/man3/end.3 b/original/man3/end.3 index 877a6eb2..5a326a84 100644 --- a/original/man3/end.3 +++ b/original/man3/end.3 @@ -91,7 +91,7 @@ First address past: #include extern char etext, edata, end; /* The symbols must have some type, - or "gcc -Wall" complains */ + or "gcc \-Wall" complains */ int main(int argc, char *argv[]) diff --git a/original/man3/err.3 b/original/man3/err.3 index 73d50eb9..28408f6d 100644 --- a/original/man3/err.3 +++ b/original/man3/err.3 @@ -32,9 +32,9 @@ .\" From: @(#)err.3 8.1 (Berkeley) 6/9/93 .\" $FreeBSD: src/lib/libc/gen/err.3,v 1.11.2.5 2001/08/17 15:42:32 ru Exp $ .\" -.\" 2007-12-08, mtk, Converted from mdoc to man macros +.\" 2011-09-10, mtk, Converted from mdoc to man macros .\" -.TH ERR 3 2007-12-28 "Linux" "Linux Programmer's Manual" +.TH ERR 3 2011-09-15 "Linux" "Linux Programmer's Manual" .SH NAME err, verr, errx, verrx, warn, vwarn, warnx, vwarnx \- formatted error messages .SH SYNOPSIS @@ -83,7 +83,7 @@ and .BR vwarn () functions append an error message obtained from .BR strerror (3) -based on a code or the global variable +based on the global variable .IR errno , preceded by another colon and space unless the .I fmt @@ -91,16 +91,6 @@ argument is NULL. .PP The -.BR err (), -.BR verr (), -.BR warn (), -and -.BR vwarn () -functions use the global variable -.I errno -to look up the error message. -.PP -The .BR errx () and .BR warnx () diff --git a/original/man3/fflush.3 b/original/man3/fflush.3 index 07c208e4..b3521bb5 100644 --- a/original/man3/fflush.3 +++ b/original/man3/fflush.3 @@ -56,7 +56,7 @@ via the stream's underlying write function. For input streams, .BR fflush () discards any buffered data that has been fetched from the underlying file, -but has not been by the application. +but has not been consumed by the application. The open status of the stream is unaffected. .PP If the diff --git a/original/man3/frexp.3 b/original/man3/frexp.3 index 8b696088..325c8227 100644 --- a/original/man3/frexp.3 +++ b/original/man3/frexp.3 @@ -107,7 +107,7 @@ The program below produces results such as the following: .RB "$" " ./a.out 2560" frexp(2560, &e) = 0.625: 0.625 * 2^12 = 2560 .RB "$" " ./a.out \-4" -frexp(\-4, &e) = \-0.5: \-0.5 * 2^3 = -4 +frexp(\-4, &e) = \-0.5: \-0.5 * 2^3 = \-4 .in .fi .SS Program source diff --git a/original/man3/fwide.3 b/original/man3/fwide.3 index e66e2a96..37b15515 100644 --- a/original/man3/fwide.3 +++ b/original/man3/fwide.3 @@ -11,7 +11,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH FWIDE 3 2010-09-20 "GNU" "Linux Programmer's Manual" +.TH FWIDE 3 2011-09-17 "GNU" "Linux Programmer's Manual" .SH NAME fwide \- set and determine the orientation of a FILE stream .SH SYNOPSIS @@ -30,6 +30,9 @@ Feature Test Macro Requirements for glibc (see .BR fwide (): .RS 4 _XOPEN_SOURCE\ >=\ 500 || _ISOC99_SOURCE || +.br +_ISOC95_SOURCE /* Since glibc 2.12 */ || +.br _POSIX_C_SOURCE\ >=\ 200112L; .br or diff --git a/original/man3/getaddrinfo_a.3 b/original/man3/getaddrinfo_a.3 index c7a4022a..5e2d0bb4 100644 --- a/original/man3/getaddrinfo_a.3 +++ b/original/man3/getaddrinfo_a.3 @@ -127,7 +127,7 @@ structure referenced by the last two elements is described in When .I mode is specified as -.BR GAI_NOWAIT, +.BR GAI_NOWAIT , notifications about resolved requests can be obtained by employing the .I sigevent diff --git a/original/man3/getcwd.3 b/original/man3/getcwd.3 index f8ecc5aa..dffc0813 100644 --- a/original/man3/getcwd.3 +++ b/original/man3/getcwd.3 @@ -159,7 +159,7 @@ In the case and .BR getwd () this is the same value as -.IR buf. +.IR buf . On failure, these functions return NULL, and .I errno diff --git a/original/man3/getgrouplist.3 b/original/man3/getgrouplist.3 index f50eb47a..7c9f3397 100644 --- a/original/man3/getgrouplist.3 +++ b/original/man3/getgrouplist.3 @@ -117,7 +117,7 @@ The following shell session shows examples of the use of this program: .nf .RB "$" " ./a.out cecilia 0" -getgrouplist() returned -1; ngroups = 3 +getgrouplist() returned \-1; ngroups = 3 .RB "$" " ./a.out cecilia 3" ngroups = 3 16 (dialout) diff --git a/original/man3/getifaddrs.3 b/original/man3/getifaddrs.3 index 4e91079e..009c4f18 100644 --- a/original/man3/getifaddrs.3 +++ b/original/man3/getifaddrs.3 @@ -138,7 +138,7 @@ when no longer needed. On success, .BR getifaddrs () returns zero; -on error, -1 is returned, and +on error, \-1 is returned, and .I errno is set appropriately. .SH ERRORS diff --git a/original/man3/hsearch.3 b/original/man3/hsearch.3 index c85a0fe3..2fef68dc 100644 --- a/original/man3/hsearch.3 +++ b/original/man3/hsearch.3 @@ -32,7 +32,7 @@ .\" 2008-09-03, mtk, restructured somewhat, in part after suggestions from .\" Timothy S. Nelson .\" -.TH HSEARCH 3 2008-10-06 "GNU" "Linux Programmer's Manual" +.TH HSEARCH 3 2011-09-10 "GNU" "Linux Programmer's Manual" .SH NAME hcreate, hdestroy, hsearch, hcreate_r, hdestroy_r, hsearch_r \- hash table management @@ -190,23 +190,14 @@ cannot be found in the hash table. returns nonzero on success, and 0 on error. .SH ERRORS .LP -.BR hcreate () -and .BR hcreate_r () +and +.BR hdestroy_r () can fail for the following reasons: .TP .B EINVAL -.RB ( hcreate_r ()) .I htab is NULL. -.TP -.B ENOMEM -Table full with \fIaction\fP set to \fBENTER\fP. -.TP -.B ESRCH -The \fIaction\fP argument is \fBFIND\fP and no corresponding element -is found in the table. -.\" hdestroy_r() can set errno to EINVAL if 'tab' is NULL. .PP .BR hsearch () and @@ -256,7 +247,7 @@ that the caller expects to store in the table. The .BR hdestroy () and -.BR hdestroy _r() +.BR hdestroy _r () functions do not free the buffers pointed to by the .I key and diff --git a/original/man3/index.3 b/original/man3/index.3 index aa4f9144..bee15c85 100644 --- a/original/man3/index.3 +++ b/original/man3/index.3 @@ -26,7 +26,7 @@ .\" 386BSD man pages .\" Modified Mon Apr 12 12:54:34 1993, David Metcalfe .\" Modified Sat Jul 24 19:13:52 1993, Rik Faith (faith@cs.unc.edu) -.TH INDEX 3 2010-09-20 "GNU" "Linux Programmer's Manual" +.TH INDEX 3 2011-09-21 "GNU" "Linux Programmer's Manual" .SH NAME index, rindex \- locate character in string .SH SYNOPSIS @@ -48,7 +48,7 @@ The function returns a pointer to the last occurrence of the character \fIc\fP in the string \fIs\fP. .PP -The terminating NULL character is considered to be a part of the +The terminating null byte (\(aq\\0\(aq) is considered to be a part of the strings. .SH "RETURN VALUE" The diff --git a/original/man3/inet_pton.3 b/original/man3/inet_pton.3 index dfc879f2..a2054cb4 100644 --- a/original/man3/inet_pton.3 +++ b/original/man3/inet_pton.3 @@ -93,7 +93,7 @@ For example, the loopback address .I 0:0:0:0:0:0:0:1 can be abbreviated as .IR ::1 . -The wildcard address, consisting of all zeroes, can be written as +The wildcard address, consisting of all zeros, can be written as .IR :: . .IP 3. An alternate format is useful for expressing IPv4-mapped IPv6 addresses. diff --git a/original/man3/lockf.3 b/original/man3/lockf.3 index df80af8d..985a473b 100644 --- a/original/man3/lockf.3 +++ b/original/man3/lockf.3 @@ -19,7 +19,7 @@ .\" Added section stuff, aeb, 2002-04-22. .\" Corrected include file, drepper, 2003-06-15. .\" -.TH LOCKF 3 2010-09-20 "GNU" "Linux Programmer's Manual" +.TH LOCKF 3 2011-09-11 "GNU" "Linux Programmer's Manual" .SH NAME lockf \- apply, test or remove a POSIX lock on an open file .SH SYNOPSIS @@ -124,7 +124,15 @@ been memory-mapped by another process. .TP .B EBADF .I fd -is not an open file descriptor. +is not an open file descriptor; or +.I cmd +is +.B F_LOCK +or +.BR F_TLOCK +and +.I fd +is not a writable file descriptor. .TP .B EDEADLK The command was diff --git a/original/man3/malloc.3 b/original/man3/malloc.3 index 4067aeab..afa62c9f 100644 --- a/original/man3/malloc.3 +++ b/original/man3/malloc.3 @@ -25,7 +25,7 @@ .\" Documented MALLOC_CHECK_, Wolfram Gloger (wmglo@dent.med.uni-muenchen.de) .\" 2007-09-15 mtk: added notes on malloc()'s use of sbrk() and mmap(). .\" -.TH MALLOC 3 2010-10-18 "GNU" "Linux Programmer's Manual" +.TH MALLOC 3 2011-09-08 "GNU" "Linux Programmer's Manual" .SH NAME malloc, free, calloc, realloc \- Allocate and free dynamic memory .SH SYNOPSIS @@ -34,8 +34,8 @@ malloc, free, calloc, realloc \- Allocate and free dynamic memory .sp .BI "void *malloc(size_t " "size" ); .BI "void free(void " "*ptr" ); -.BI "void *realloc(void " "*ptr" ", size_t " "size" ); .BI "void *calloc(size_t " "nmemb" ", size_t " "size" ); +.BI "void *realloc(void " "*ptr" ", size_t " "size" ); .fi .SH DESCRIPTION .PP diff --git a/original/man3/matherr.3 b/original/man3/matherr.3 index 42dabb17..b4e94c76 100644 --- a/original/man3/matherr.3 +++ b/original/man3/matherr.3 @@ -253,7 +253,7 @@ tgamma(0) SING copysign( y ERANGE log(0) SING \-HUGE y EDOM log(x<0) DOMAIN \-HUGE y EDOM log2(0) SING \-HUGE n EDOM \" different from log() -log2(x<0) DOMAIN -HUGE n EDOM \" different from log() +log2(x<0) DOMAIN \-HUGE n EDOM \" different from log() log10(0) SING \-HUGE y EDOM log10(x<0) DOMAIN \-HUGE y EDOM pow(0.0,0.0) DOMAIN 0.0 y EDOM @@ -295,7 +295,7 @@ should assign as the return value of the math function. The following example run, where .BR log (3) is given an argument of 0.0, does not use -.BR matherr() : +.BR matherr (): .in +4n .nf @@ -314,7 +314,7 @@ is called, and returns 0: .RB "$" " ./a.out 0.0 0" matherr SING exception in log() function args: 0.000000, 0.000000 - retval: -340282346638528859811704183484516925440.000000 + retval: \-340282346638528859811704183484516925440.000000 log: SING error errno: Numerical argument out of domain x=-340282346638528859811704183484516925440.000000 @@ -332,7 +332,7 @@ is called, and returns a nonzero value: .RB "$" " ./a.out 0.0 1" matherr SING exception in log() function args: 0.000000, 0.000000 - retval: -340282346638528859811704183484516925440.000000 + retval: \-340282346638528859811704183484516925440.000000 x=-340282346638528859811704183484516925440.000000 .fi .in @@ -351,7 +351,7 @@ and returns a nonzero value: .RB "$" " ./a.out 0.0 1 12345.0" matherr SING exception in log() function args: 0.000000, 0.000000 - retval: -340282346638528859811704183484516925440.000000 + retval: \-340282346638528859811704183484516925440.000000 x=12345.000000 .fi .in diff --git a/original/man3/mbstowcs.3 b/original/man3/mbstowcs.3 index 05e8accc..e95a7a37 100644 --- a/original/man3/mbstowcs.3 +++ b/original/man3/mbstowcs.3 @@ -11,7 +11,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH MBSTOWCS 3 1999-07-25 "GNU" "Linux Programmer's Manual" +.TH MBSTOWCS 3 2011-09-10 "GNU" "Linux Programmer's Manual" .SH NAME mbstowcs \- convert a multibyte string to a wide-character string .SH SYNOPSIS @@ -80,4 +80,5 @@ The function provides a better interface to the same functionality. .SH "SEE ALSO" -.BR mbsrtowcs (3) +.BR mbsrtowcs (3), +.BR wcstombs(3) diff --git a/original/man3/memchr.3 b/original/man3/memchr.3 index bbf2f463..af8f3147 100644 --- a/original/man3/memchr.3 +++ b/original/man3/memchr.3 @@ -88,7 +88,7 @@ then .BR rawmemchr () may proceed to search beyond the end of the string, and the result is unspecified. -The folowing call is a fast means of locating a string's +The following call is a fast means of locating a string's terminating null byte: .in +4n .nf diff --git a/original/man3/memcmp.3 b/original/man3/memcmp.3 index 6d9975ba..853a2bfe 100644 --- a/original/man3/memcmp.3 +++ b/original/man3/memcmp.3 @@ -25,7 +25,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 18:55:27 1993 by Rik Faith (faith@cs.unc.edu) -.TH MEMCMP 3 1993-04-10 "" "Linux Programmer's Manual" +.TH MEMCMP 3 2011-09-14 "" "Linux Programmer's Manual" .SH NAME memcmp \- compare memory areas .SH SYNOPSIS @@ -37,8 +37,9 @@ memcmp \- compare memory areas .SH DESCRIPTION The .BR memcmp () -function compares the first \fIn\fP bytes of the -memory areas \fIs1\fP and \fIs2\fP. +function compares the first \fIn\fP bytes (each interpreted as +.IR "unsigned char" ) +of the memory areas \fIs1\fP and \fIs2\fP. It returns an integer less than, equal to, or greater than zero if \fIs1\fP is found, respectively, to be less than, to match, or be greater than \fIs2\fP. diff --git a/original/man3/mkstemp.3 b/original/man3/mkstemp.3 index 84b474b3..65f01494 100644 --- a/original/man3/mkstemp.3 +++ b/original/man3/mkstemp.3 @@ -39,7 +39,7 @@ mkstemp, mkostemp \- create a unique temporary file .sp .BI "int mkstemp(char *" template ); .sp -.BI "int mkostemp (char *" template ", int " flags ); +.BI "int mkostemp(char *" template ", int " flags ); .sp .BI "int mkstemps(char *" template ", int " suffixlen ); .sp @@ -156,7 +156,7 @@ now \fItemplate\fP is unchanged. For .BR mkstemps () and -.BR mkostemps () +.BR mkostemps (): .I template is less than .I "(6 + suffixlen)" diff --git a/original/man3/modf.3 b/original/man3/modf.3 index ee72384b..4460a230 100644 --- a/original/man3/modf.3 +++ b/original/man3/modf.3 @@ -80,7 +80,7 @@ is set to a NaN. If .I x -is positive infinity (negative infinity), +0 (-0) is returned, and +is positive infinity (negative infinity), +0 (\-0) is returned, and .IR *iptr is set to positive infinity (negative infinity). .SH ERRORS diff --git a/original/man3/perror.3 b/original/man3/perror.3 index 28ddb819..1e405fbc 100644 --- a/original/man3/perror.3 +++ b/original/man3/perror.3 @@ -33,7 +33,7 @@ perror \- print a system error message .SH SYNOPSIS .B #include .sp -.BI "void perror(const char " *s ); +.BI "void perror(const char *" s ); .sp .B #include .sp diff --git a/original/man3/posix_fallocate.3 b/original/man3/posix_fallocate.3 index ed216f1b..6fae3678 100644 --- a/original/man3/posix_fallocate.3 +++ b/original/man3/posix_fallocate.3 @@ -94,7 +94,7 @@ referred to by .TP .B ESPIPE .I fd -refers to a pipe of file descriptor. +refers to a pipe. .SH VERSIONS .BR posix_fallocate () is available since glibc 2.1.94. diff --git a/original/man3/pow.3 b/original/man3/pow.3 index 659c7edb..89ebcdb7 100644 --- a/original/man3/pow.3 +++ b/original/man3/pow.3 @@ -222,7 +222,7 @@ the result is positive infinity. If .I x -is +0 or -0, +is +0 or \-0, and .I y is an odd integer less than 0, @@ -237,7 +237,7 @@ with the same sign as If .I x -is +0 or -0, +is +0 or \-0, and .I y is less than 0 and not an odd integer, diff --git a/original/man3/psignal.3 b/original/man3/psignal.3 index f190de6d..29420afb 100644 --- a/original/man3/psignal.3 +++ b/original/man3/psignal.3 @@ -80,7 +80,7 @@ the child process ID for and the user ID and process ID of the sender, for signals set using .BR kill (2) or -.BR sigqueue (2)). +.BR sigqueue (3)). The array \fIsys_siglist\fP holds the signal description strings indexed by signal number. diff --git a/original/man3/pthread_getattr_np.3 b/original/man3/pthread_getattr_np.3 index fda354d0..b8d4dfbd 100644 --- a/original/man3/pthread_getattr_np.3 +++ b/original/man3/pthread_getattr_np.3 @@ -240,7 +240,7 @@ usage(char *pname, char *msg) { if (msg != NULL) fputs(msg, stderr); - fprintf(stderr, "Usage: %s [\-s stack-size [-a]]" + fprintf(stderr, "Usage: %s [\-s stack-size [\-a]]" " [\-g guard-size]\\n", pname); fprintf(stderr, "\\t\\t\-a means program should allocate stack\\n"); exit(EXIT_FAILURE); @@ -269,7 +269,7 @@ get_thread_attributes_from_cl(int argc, char *argv[], } if (allocate_stack && stack_size == \-1) - usage(argv[0], "Specifying \-a without -s makes no sense\\n"); + usage(argv[0], "Specifying \-a without \-s makes no sense\\n"); if (argc > optind) usage(argv[0], "Extraneous command\-line arguments\\n"); diff --git a/original/man3/pthread_getcpuclockid.3 b/original/man3/pthread_getcpuclockid.3 index de03fe50..114cff2c 100644 --- a/original/man3/pthread_getcpuclockid.3 +++ b/original/man3/pthread_getcpuclockid.3 @@ -92,7 +92,7 @@ Subthread CPU time: 0.992 .SS Program source \& .nf -/* Link with "-lrt" */ +/* Link with "\-lrt" */ #include #include diff --git a/original/man3/pthread_sigqueue.3 b/original/man3/pthread_sigqueue.3 index c4faa407..8bfa3a43 100644 --- a/original/man3/pthread_sigqueue.3 +++ b/original/man3/pthread_sigqueue.3 @@ -20,7 +20,7 @@ .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" -.TH PTHREAD_SIGQUEUE 3 2010-11-16 "Linux" "Linux Programmer's Manual" +.TH PTHREAD_SIGQUEUE 3 2011-09-23 "Linux" "Linux Programmer's Manual" .SH NAME pthread_sigqueue \- queue a signal and data to a thread .SH SYNOPSIS @@ -44,7 +44,7 @@ _GNU_SOURCE The .BR pthread_sigqueue () function performs a similar task to -.BR sigqueue (2), +.BR sigqueue (3), but, rather than sending a signal to another process, it sends a signal to another thread in the same process as the calling thread. @@ -58,11 +58,11 @@ argument specifies the signal to be sent. The .I value argument specifies data to accompany the signal; see -.BR sigqueue (2) +.BR sigqueue (3) for details. .SH RETURN VALUE On success, -.BR pthread_create () +.BR pthread_sigqueue () returns 0; on error, it returns an error number. .SH ERRORS @@ -88,15 +88,13 @@ is not valid. The .BR pthread_sigqueue () function first appeared in glibc 2.11. -It is implemented using the Linux-specific -.BR rt_tgsigqueinfo () -system call, which was added in Linux 2.6.31. .SH CONFORMING TO This function is a GNU extension. .SH SEE ALSO +.BR rt_tgsigqueueinfo (2), .BR sigaction (2), -.BR sigqueue (2), -.BR sigwait (2), +.BR sigqueue (3), +.BR sigwait (3), .BR pthread_sigmask (3), .BR pthreads (7), .BR signal (7) diff --git a/original/man3/realpath.3 b/original/man3/realpath.3 index 56d85d83..339ccdf3 100644 --- a/original/man3/realpath.3 +++ b/original/man3/realpath.3 @@ -23,7 +23,7 @@ .\" Rewritten old page, 990824, aeb@cwi.nl .\" 2004-12-14, mtk, added discussion of resolved_path == NULL .\" -.TH REALPATH 3 2010-09-20 "" "Linux Programmer's Manual" +.TH REALPATH 3 2011-09-10 "" "Linux Programmer's Manual" .SH NAME realpath \- return the canonicalized absolute pathname .SH SYNOPSIS @@ -104,13 +104,13 @@ is set to indicate the error. Read or search permission was denied for a component of the path prefix. .TP .B EINVAL -Either .I path -or -.I resolved_path is NULL. -(In libc5 this would just cause a segfault.) -But, see NOTES below. +.\" (In libc5 this would just cause a segfault.) +(In glibc versions before 2.3, +this error is also returned if +.IR resolved_path +is NULL.) .TP .B EIO An I/O error occurred while reading from the file system. diff --git a/original/man3/scandir.3 b/original/man3/scandir.3 index 8ea5fec4..9e355aa6 100644 --- a/original/man3/scandir.3 +++ b/original/man3/scandir.3 @@ -31,7 +31,9 @@ .\" Modified Sun Sep 24 20:15:46 2000 by aeb, following Petter Reinholdtsen. .\" Modified 2001-12-26 by aeb, following Joey. Added versionsort. .\" -.TH SCANDIR 3 2009-02-10 "GNU" "Linux Programmer's Manual" +.\" FIXME glibc 2.15 adds scandirat() +.\" +.TH SCANDIR 3 2011-09-08 "GNU" "Linux Programmer's Manual" .SH NAME scandir, alphasort, versionsort \- scan a directory for matching entries .SH SYNOPSIS @@ -102,8 +104,14 @@ or greater than zero if the first argument is considered to be respectively less than, equal to, or greater than the second. .SH ERRORS .TP +.B ENOENT +The path in \fIdirp\fR does not exist. +.TP .B ENOMEM Insufficient memory to complete the operation. +.TP +.B ENOTDIR +The path in \fIdirp\fR is not a directory. .SH VERSIONS .BR versionsort () was added to glibc in version 2.1. diff --git a/original/man3/sched_getcpu.3 b/original/man3/sched_getcpu.3 index ebbb4725..92601efe 100644 --- a/original/man3/sched_getcpu.3 +++ b/original/man3/sched_getcpu.3 @@ -69,7 +69,7 @@ call: int c, s; s = getcpu(&c, NULL, NULL); -cpu = (s == -1) ? s : c; +cpu = (s == \-1) ? s : c; .fi .in .SH SEE ALSO diff --git a/original/man3/siginterrupt.3 b/original/man3/siginterrupt.3 index 936425d6..e5589d9e 100644 --- a/original/man3/siginterrupt.3 +++ b/original/man3/siginterrupt.3 @@ -26,7 +26,7 @@ .\" 386BSD man pages .\" Modified Sun Jul 25 10:40:51 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Sun Apr 14 16:20:34 1996 by Andries Brouwer (aeb@cwi.nl) -.TH SIGINTERRUPT 3 2010-09-26 "" "Linux Programmer's Manual" +.TH SIGINTERRUPT 3 2011-09-09 "" "Linux Programmer's Manual" .SH NAME siginterrupt \- allow signals to interrupt system calls .SH SYNOPSIS @@ -59,9 +59,6 @@ If the \fIflag\fP argument is false (0), then system calls will be restarted if interrupted by the specified signal \fIsig\fP. This is the default behavior in Linux. -However, when a new signal handler is specified with the -.BR signal (2) -function, the system call is interrupted by default. .PP If the \fIflag\fP argument is true (1) and no data has been transferred, then a system call interrupted by the signal \fIsig\fP will return \-1 diff --git a/original/man3/sigqueue.3 b/original/man3/sigqueue.3 new file mode 100644 index 00000000..b1a6f054 --- /dev/null +++ b/original/man3/sigqueue.3 @@ -0,0 +1,154 @@ +.\" Copyright (c) 2002 Michael Kerrisk +.\" +.\" Permission is granted to make and distribute verbatim copies of this +.\" manual provided the copyright notice and this permission notice are +.\" preserved on all copies. +.\" +.\" Permission is granted to copy and distribute modified versions of this +.\" manual under the conditions for verbatim copying, provided that the +.\" entire resulting derived work is distributed under the terms of a +.\" permission notice identical to this one. +.\" +.\" Since the Linux kernel and libraries are constantly changing, this +.\" manual page may be incorrect or out-of-date. The author(s) assume no +.\" responsibility for errors or omissions, or for damages resulting from +.\" the use of the information contained herein. The author(s) may not +.\" have taken the same level of care in the production of this manual, +.\" which is licensed free of charge, as they might when working +.\" professionally. +.\" +.\" Formatted or processed versions of this manual, if unaccompanied by +.\" the source, must acknowledge the copyright and authors of this work. +.\" +.\" added note on self-signaling, aeb, 2002-06-07 +.\" added note on CAP_KILL, mtk, 2004-06-16 +.\" +.TH SIGQUEUE 3 2011-09-18 "Linux" "Linux Programmer's Manual" +.SH NAME +sigqueue, rt_sigqueueinfo \- queue a signal and data to a process +.SH SYNOPSIS +.B #include +.sp +.BI "int sigqueue(pid_t " pid ", int " sig ", const union sigval " value ); +.sp +.in -4n +Feature Test Macro Requirements for glibc (see +.BR feature_test_macros (7)): +.in +.sp +.BR sigqueue (): +_POSIX_C_SOURCE\ >=\ 199309L +.SH DESCRIPTION +.BR sigqueue () +sends the signal specified in +.I sig +to the process whose PID is given in +.IR pid . +The permissions required to send a signal are the same as for +.BR kill (2). +As with +.BR kill (2), +the null signal (0) can be used to check if a process with a given +PID exists. +.PP +The +.I value +argument is used to specify an accompanying item of data (either an integer +or a pointer value) to be sent with the signal, and has the following type: +.sp +.in +4n +.nf +union sigval { + int sival_int; + void *sival_ptr; +}; +.fi +.in + +If the receiving process has installed a handler for this signal using the +.B SA_SIGINFO +flag to +.BR sigaction (2), +then it can obtain this data via the +.I si_value +field of the +.I siginfo_t +structure passed as the second argument to the handler. +Furthermore, the +.I si_code +field of that structure will be set to +.BR SI_QUEUE . +.SH "RETURN VALUE" +On success, +.BR sigqueue () +returns 0, indicating that the signal was successfully +queued to the receiving process. +Otherwise \-1 is returned and +.I errno +is set to indicate the error. +.SH ERRORS +.TP +.B EAGAIN +The limit of signals which may be queued has been reached. +(See +.BR signal (7) +for further information.) +.TP +.B EINVAL +.I sig +was invalid. +.TP +.B EPERM +The process does not have permission to send the signal +to the receiving process. +For the required permissions, see +.BR kill (2). +.TP +.B ESRCH +No process has a PID matching +.IR pid . +.SH VERSIONS +This system call first appeared in Linux 2.2. +.SH "CONFORMING TO" +POSIX.1-2001. +.SH NOTES +If this function results in the sending of a signal to the process +that invoked it, and that signal was not blocked by the calling thread, +and no other threads were willing to handle this signal (either by +having it unblocked, or by waiting for it using +.BR sigwait (3)), +then at least some signal must be delivered to this thread before this +function returns. + +On Linux, this function is implemented using the +.BR rt_sigqueueinfo (2) +system call. +The system call differs in its third argument, which is the +.I siginfo_t +structure that will be supplied to the receiving process's +signal handler or returned by the receiving process's +.BR sigtimedwait (2) +call. +Inside the glibc +.BR sigqueue () +wrapper, this argument, +.IR uinfo , +is initialized as follows: +.in +4n +.nf + +uinfo.si_signo = sig; /* argument supplied to sigqueue() */ +uinfo.si_code = SI_QUEUE; +uinfo.si_pid = getpid(); /* Process ID of sender */ +uinfo.si_uid = getuid(); /* Real UID of sender */ +uinfo.si_value = val; /* argument supplied to sigqueue() */ +.fi +.in +.SH "SEE ALSO" +.BR kill (2), +.BR rt_sigqueueinfo (2), +.BR sigaction (2), +.BR signal (2), +.BR pthread_sigqueue (3), +.BR sigwait (3), +.BR signal (7) diff --git a/original/man3/strlen.3 b/original/man3/strlen.3 index e7e51837..94a1fcc2 100644 --- a/original/man3/strlen.3 +++ b/original/man3/strlen.3 @@ -25,7 +25,7 @@ .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 18:02:26 1993 by Rik Faith (faith@cs.unc.edu) -.TH STRLEN 3 1993-04-12 "" "Linux Programmer's Manual" +.TH STRLEN 3 2011-09-10 "" "Linux Programmer's Manual" .SH NAME strlen \- calculate the length of a string .SH SYNOPSIS @@ -47,5 +47,6 @@ function returns the number of characters in \fIs\fP. SVr4, 4.3BSD, C89, C99. .SH "SEE ALSO" .BR string (3), +.BR strnlen (3), .BR wcslen (3), .BR wcsnlen (3) diff --git a/original/man3/strnlen.3 b/original/man3/strnlen.3 index a7243aad..de37b325 100644 --- a/original/man3/strnlen.3 +++ b/original/man3/strnlen.3 @@ -8,7 +8,7 @@ .\" References consulted: .\" GNU glibc-2 source code and manual .\" -.TH STRNLEN 3 2010-10-31 "GNU" "Linux Programmer's Manual" +.TH STRNLEN 3 2011-09-10 "GNU" "Linux Programmer's Manual" .SH NAME strnlen \- determine the length of a fixed-size string .SH SYNOPSIS @@ -54,6 +54,6 @@ function returns \fIstrlen(s)\fP, if that is less than if there is no \(aq\\0\(aq character among the first \fImaxlen\fP characters pointed to by \fIs\fP. .SH "CONFORMING TO" -This function is a GNU extension. +POSIX.1-2008. .SH "SEE ALSO" .BR strlen (3) diff --git a/original/man3/strtoul.3 b/original/man3/strtoul.3 index b37488ed..b62e6a82 100644 --- a/original/man3/strtoul.3 +++ b/original/man3/strtoul.3 @@ -28,7 +28,7 @@ .\" Fixed typo, aeb, 950823 .\" 2002-02-22, joey, mihtjel: Added strtoull() .\" -.TH STRTOUL 3 2010-09-20 "GNU" "Linux Programmer's Manual" +.TH STRTOUL 3 2011-09-15 "GNU" "Linux Programmer's Manual" .SH NAME strtoul, strtoull, strtouq \- convert a string to an unsigned long integer .SH SYNOPSIS @@ -146,8 +146,8 @@ to C99 and POSIX.1-2001. Since .BR strtoul () can legitimately return 0 or -.B LONG_MAX -.RB ( LLONG_MAX +.B ULONG_MAX +.RB ( ULLONG_MAX for .BR strtoull ()) on both success and failure, the calling program should set diff --git a/original/man3/sysconf.3 b/original/man3/sysconf.3 index a38d30d9..4481ced2 100644 --- a/original/man3/sysconf.3 +++ b/original/man3/sysconf.3 @@ -254,7 +254,7 @@ parentheses by .BR expr (1). .TP .BR LINE_MAX " - " _SC_LINE_MAX -The maximum length of a utility's input line length, either from +The maximum length of a utility's input line, either from standard input or from a file. This includes length for a trailing newline. diff --git a/original/man3/termios.3 b/original/man3/termios.3 index 3bf48458..21eb3f09 100644 --- a/original/man3/termios.3 +++ b/original/man3/termios.3 @@ -38,7 +38,7 @@ .\" Enhanced the discussion of "raw" mode for cfmakeraw(). .\" Document CMSPAR. .\" -.TH TERMIOS 3 2010-06-20 "Linux" "Linux Programmer's Manual" +.TH TERMIOS 3 2011-09-08 "Linux" "Linux Programmer's Manual" .SH NAME termios, tcgetattr, tcsetattr, tcsendbreak, tcdrain, tcflush, tcflow, cfmakeraw, cfgetospeed, cfgetispeed, cfsetispeed, cfsetospeed, cfsetspeed \- @@ -98,7 +98,7 @@ tcflag_t c_iflag; /* input modes */ tcflag_t c_oflag; /* output modes */ tcflag_t c_cflag; /* control modes */ tcflag_t c_lflag; /* local modes */ -cc_t c_cc[NCCS]; /* control chars */ +cc_t c_cc[NCCS]; /* special characters */ .fi .in .PP @@ -396,10 +396,11 @@ If \fBICANON\fP is also set, the KILL character erases the current line. If \fBICANON\fP is also set, echo the NL character even if ECHO is not set. .TP .B ECHOCTL -(not in POSIX) If \fBECHO\fP is also set, ASCII control signals other than +(not in POSIX) If \fBECHO\fP is also set, +terminal special characters other than TAB, NL, START, and STOP are echoed as \fB^X\fP, where X is the character with -ASCII code 0x40 greater than the control signal. +ASCII code 0x40 greater than the special character. For example, character 0x08 (BS) is echoed as \fB^H\fP. [requires @@ -465,94 +466,134 @@ This flag, as well as \fBICANON\fP must be enabled for the special characters EOL2, LNEXT, REPRINT, WERASE to be interpreted, and for the \fBIUCLC\fP flag to be effective. .PP -The \fIc_cc\fP array defines the special control characters. +The \fIc_cc\fP array defines the terminal special characters. The symbolic indices (initial values) and meaning are: .TP -.B VINTR -(003, ETX, Ctrl-C, or also 0177, DEL, rubout) -Interrupt character. -Send a -.B SIGINT -signal. +.B VDISCARD +(not in POSIX; not supported under Linux; 017, SI, Ctrl-O) +Toggle: start/stop discarding pending output. Recognized when -.B ISIG +.B IEXTEN is set, and then not passed as input. .TP -.B VQUIT -(034, FS, Ctrl-\e) -Quit character. -Send -.B SIGQUIT -signal. +.B VDSUSP +(not in POSIX; not supported under Linux; 031, EM, Ctrl-Y) +Delayed suspend character (DSUSP): +send +.B SIGTSTP +signal when the character is read by the user program. Recognized when +.B IEXTEN +and .B ISIG +are set, and the system supports +job control, and then not passed as input. +.TP +.B VEOF +(004, EOT, Ctrl-D) +End-of-file character (EOF). +More precisely: this character causes the pending tty buffer to be sent +to the waiting user program without waiting for end-of-line. +If it is the first character of the line, the +.BR read (2) +in the user program returns 0, which signifies end-of-file. +Recognized when +.B ICANON is set, and then not passed as input. .TP +.B VEOL +(0, NUL) +Additional end-of-line character (EOL). +Recognized when +.B ICANON +is set. +.TP +.B VEOL2 +(not in POSIX; 0, NUL) +Yet another end-of-line character (EOL2). +Recognized when +.B ICANON +is set. +.TP .B VERASE (0177, DEL, rubout, or 010, BS, Ctrl-H, or also #) -Erase character. +Erase character (ERASE). This erases the previous not-yet-erased character, but does not erase past EOF or beginning-of-line. Recognized when .B ICANON is set, and then not passed as input. .TP +.B VINTR +(003, ETX, Ctrl-C, or also 0177, DEL, rubout) +Interrupt character (INTR). +Send a +.B SIGINT +signal. +Recognized when +.B ISIG +is set, and then not passed as input. +.TP .B VKILL (025, NAK, Ctrl-U, or Ctrl-X, or also @) -Kill character. +Kill character (KILL). This erases the input since the last EOF or beginning-of-line. Recognized when .B ICANON is set, and then not passed as input. .TP -.B VEOF -(004, EOT, Ctrl-D) -End-of-file character. -More precisely: this character causes the pending tty buffer to be sent -to the waiting user program without waiting for end-of-line. -If it is the first character of the line, the -.BR read (2) -in the user program returns 0, which signifies end-of-file. +.B VLNEXT +(not in POSIX; 026, SYN, Ctrl-V) +Literal next (LNEXT). +Quotes the next input character, depriving it of +a possible special meaning. Recognized when -.B ICANON +.B IEXTEN is set, and then not passed as input. .TP .B VMIN -Minimum number of characters for noncanonical read. +Minimum number of characters for noncanonical read (MIN). .TP -.B VEOL -(0, NUL) -Additional end-of-line character. +.B VQUIT +(034, FS, Ctrl-\e) +Quit character (QUIT). +Send +.B SIGQUIT +signal. Recognized when -.B ICANON -is set. -.TP -.B VTIME -Timeout in deciseconds for noncanonical read. +.B ISIG +is set, and then not passed as input. .TP -.B VEOL2 -(not in POSIX; 0, NUL) -Yet another end-of-line character. +.B VREPRINT +(not in POSIX; 022, DC2, Ctrl-R) +Reprint unread characters (REPRINT). Recognized when .B ICANON -is set. -.TP -.B VSWTCH -(not in POSIX; not supported under Linux; 0, NUL) -Switch character. -(Used by \fBshl\fP only.) +and +.B IEXTEN +are set, and then not passed as input. .TP .B VSTART (021, DC1, Ctrl-Q) -Start character. +Start character (START). Restarts output stopped by the Stop character. Recognized when .B IXON is set, and then not passed as input. .TP +.B VSTATUS +(not in POSIX; not supported under Linux; +status request: 024, DC4, Ctrl-T). +Status character (STATUS). +Display status information at terminal, +including state of foreground process and amount of CPU time it has consumed. +Also sends a +.BR SIGINFO +signal (not supported on Linux) to the foreground process group. +.TP .B VSTOP (023, DC3, Ctrl-S) -Stop character. +Stop character (STOP). Stop output until Start character typed. Recognized when .B IXON @@ -560,7 +601,7 @@ is set, and then not passed as input. .TP .B VSUSP (032, SUB, Ctrl-Z) -Suspend character. +Suspend character (SUSP). Send .B SIGTSTP signal. @@ -568,58 +609,32 @@ Recognized when .B ISIG is set, and then not passed as input. .TP -.B VDSUSP -(not in POSIX; not supported under Linux; 031, EM, Ctrl-Y) -Delayed suspend character: -send -.B SIGTSTP -signal when the character is read by the user program. -Recognized when -.B IEXTEN -and -.B ISIG -are set, and the system supports -job control, and then not passed as input. +.B VSWTCH +(not in POSIX; not supported under Linux; 0, NUL) +Switch character (SWTCH). +Used in System V to switch shells in +.IR "shell layers" , +a precedessor to shell job control. .TP -.B VLNEXT -(not in POSIX; 026, SYN, Ctrl-V) -Literal next. -Quotes the next input character, depriving it of -a possible special meaning. -Recognized when -.B IEXTEN -is set, and then not passed as input. +.B VTIME +Timeout in deciseconds for noncanonical read (TIME). .TP .B VWERASE (not in POSIX; 027, ETB, Ctrl-W) -Word erase. -Recognized when -.B ICANON -and -.B IEXTEN -are set, and then not passed as input. -.TP -.B VREPRINT -(not in POSIX; 022, DC2, Ctrl-R) -Reprint unread characters. +Word erase (WERASE). Recognized when .B ICANON and .B IEXTEN are set, and then not passed as input. -.TP -.B VDISCARD -(not in POSIX; not supported under Linux; 017, SI, Ctrl-O) -Toggle: start/stop discarding pending output. -Recognized when -.B IEXTEN -is set, and then not passed as input. -.TP -.B VSTATUS -(not in POSIX; not supported under Linux; -status request: 024, DC4, Ctrl-T). .LP -These symbolic subscript values are all different, except that +An individual terminal special character can be disabled by setting +the value of the corresponding +.I c_cc +element to +.BR _POSIX_VDISABLE . +.LP +The above symbolic subscript values are all different, except that .BR VTIME , .B VMIN may have the same value as diff --git a/original/man3/tgamma.3 b/original/man3/tgamma.3 index 013cdc1e..077ddba7 100644 --- a/original/man3/tgamma.3 +++ b/original/man3/tgamma.3 @@ -87,7 +87,7 @@ and the functions return 0, with the correct mathematical sign. If .I x -is -0 or +0, +is \-0 or +0, a pole error occurs, and the functions return .BR HUGE_VAL , @@ -169,7 +169,7 @@ is not set (it should be set to .\" Bug raised: http://sources.redhat.com/bugzilla/show_bug.cgi?id=6809 In glibc versions 2.3.3 and earlier, -an argument of +0 or -0 incorrectly produced a domain error +an argument of +0 or \-0 incorrectly produced a domain error .RI ( errno set to .B EDOM diff --git a/original/man3/tzset.3 b/original/man3/tzset.3 index a5ac158d..24f6b264 100644 --- a/original/man3/tzset.3 +++ b/original/man3/tzset.3 @@ -156,7 +156,7 @@ runs from the first Sunday in October to the third Sunday in March, and the changeovers happen at the default time of 02:00:00: .nf - TZ="NZST-12.00:00NZDT-13:00:00,M10.1.0,M3.3.0" + TZ="NZST-12:00:00NZDT-13:00:00,M10.1.0,M3.3.0" .fi .PP The third format specifies that the timezone information should be read diff --git a/original/man3/wcsnlen.3 b/original/man3/wcsnlen.3 index c4401d10..9f6829f3 100644 --- a/original/man3/wcsnlen.3 +++ b/original/man3/wcsnlen.3 @@ -10,7 +10,7 @@ .\" Dinkumware C library reference http://www.dinkumware.com/ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" -.TH WCSNLEN 3 2010-09-15 "GNU" "Linux Programmer's Manual" +.TH WCSNLEN 3 2011-09-21 "GNU" "Linux Programmer's Manual" .SH NAME wcsnlen \- determine the length of a fixed-size wide-character string .SH SYNOPSIS @@ -47,11 +47,12 @@ of the function. It returns the number of wide-characters in the string pointed to by \fIs\fP, not including the terminating L\(aq\\0\(aq character, but at most -\fImaxlen\fP. +\fImaxlen\fP +wide characters (note: this parameter is not a byte count). In doing this, .BR wcsnlen () looks only at the first \fImaxlen\fP -wide-characters at \fIs\fP and never beyond \fIs+maxlen\fP. +wide characters at \fIs\fP and never beyond \fIs+maxlen\fP. .SH "RETURN VALUE" The .BR wcsnlen () diff --git a/original/man3/wcstombs.3 b/original/man3/wcstombs.3 index fc22451d..bf70f4cb 100644 --- a/original/man3/wcstombs.3 +++ b/original/man3/wcstombs.3 @@ -11,7 +11,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCSTOMBS 3 1999-07-25 "GNU" "Linux Programmer's Manual" +.TH WCSTOMBS 3 2011-09-08 "GNU" "Linux Programmer's Manual" .SH NAME wcstombs \- convert a wide-character string to a multibyte string .SH SYNOPSIS @@ -80,4 +80,5 @@ The function provides a thread safe interface to the same functionality. .SH "SEE ALSO" +.BR mbstowcs (3), .BR wcsrtombs (3) diff --git a/original/man3/wctob.3 b/original/man3/wctob.3 index 59f5fcda..429e46a8 100644 --- a/original/man3/wctob.3 +++ b/original/man3/wctob.3 @@ -11,7 +11,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WCTOB 3 2009-02-04 "GNU" "Linux Programmer's Manual" +.TH WCTOB 3 2011-09-22 "GNU" "Linux Programmer's Manual" .SH NAME wctob \- try to represent a wide character as a single byte .SH SYNOPSIS @@ -53,9 +53,12 @@ current locale. This function should never be used. Internationalized programs must never distinguish single-byte and multibyte characters. -Use the function +Use either .BR wctomb (3) +or the thread-safe +.BR wcrtomb (3) instead. .SH "SEE ALSO" .BR btowc (3), +.BR wcrtomb (3), .BR wctomb (3) diff --git a/original/man3/wprintf.3 b/original/man3/wprintf.3 index f8b8fc2d..985b60df 100644 --- a/original/man3/wprintf.3 +++ b/original/man3/wprintf.3 @@ -11,7 +11,7 @@ .\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html .\" ISO/IEC 9899:1999 .\" -.TH WPRINTF 3 2010-09-20 "GNU" "Linux Programmer's Manual" +.TH WPRINTF 3 2011-09-17 "GNU" "Linux Programmer's Manual" .SH NAME wprintf, fwprintf, swprintf, vwprintf, vfwprintf, vswprintf \- formatted wide-character output conversion @@ -46,6 +46,9 @@ All functions shown above: .\" .BR vfwprintf (), .\" .BR vswprintf (): _XOPEN_SOURCE\ >=\ 500 || _ISOC99_SOURCE || +.br +_ISOC95_SOURCE /* Since glibc 2.12 */ || +.br _POSIX_C_SOURCE\ >=\ 200112L; .br or diff --git a/original/man4/cciss.4 b/original/man4/cciss.4 new file mode 100644 index 00000000..5b2ce35b --- /dev/null +++ b/original/man4/cciss.4 @@ -0,0 +1,362 @@ +.\" Copyright (C) 2011, Hewlett-Packard Development Company, L.P. +.\" Written by Stephen M. Cameron +.\" Licensed under GNU General Public License version 2 (GPLv2) +.\" +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH CCISS 4 2011-09-21 "Linux" "Linux Programmer's Manual" +.SH NAME +cciss \- HP Smart Array block driver +.SH SYNOPSIS +.nf +modprobe cciss [ cciss_allow_hpsa=1 ] +.fi +.SH DESCRIPTION +.B cciss +is a block driver for older HP Smart Array RAID controllers. +.SS Options +.IR "cciss_allow_hpsa=1" : +This option prevents the +.B cciss +driver from attempting to drive any controllers that the +.BR hpsa (4) +driver is capable of controlling, which is to say, the +.B cciss +driver is restricted by this option to the following controllers: +.nf + + Smart Array 5300 + Smart Array 5i + Smart Array 532 + Smart Array 5312 + Smart Array 641 + Smart Array 642 + Smart Array 6400 + Smart Array 6400 EM + Smart Array 6i + Smart Array P600 + Smart Array P400i + Smart Array E200i + Smart Array E200 + Smart Array E200i + Smart Array E200i + Smart Array E200i + Smart Array E500 +.fi +.SS Supported Hardware +The +.B cciss +driver supports the following Smart Array boards: +.nf + + Smart Array 5300 + Smart Array 5i + Smart Array 532 + Smart Array 5312 + Smart Array 641 + Smart Array 642 + Smart Array 6400 + Smart Array 6400 U320 Expansion Module + Smart Array 6i + Smart Array P600 + Smart Array P800 + Smart Array E400 + Smart Array P400i + Smart Array E200 + Smart Array E200i + Smart Array E500 + Smart Array P700m + Smart Array P212 + Smart Array P410 + Smart Array P410i + Smart Array P411 + Smart Array P812 + Smart Array P712m + Smart Array P711m +.fi +.SS Configuration Details +To configure HP Smart Array controllers, +use the HP Array Configuration Utility +(either +.BR hpacuxe (8) +or +.BR hpacucli (8)) +or the Offline ROM-based Configuration Utility (ORCA) +run from the Smart Array's option ROM at boot time. +.SH FILES +.SS Device Nodes +The device naming scheme is as follows: +.nf + +Major numbers: + + 104 cciss0 + 105 cciss1 + 106 cciss2 + 105 cciss3 + 108 cciss4 + 109 cciss5 + 110 cciss6 + 111 cciss7 + +Minor numbers: + + b7 b6 b5 b4 b3 b2 b1 b0 + |----+----| |----+----| + | | + | +-------- Partition ID (0=wholedev, 1-15 partition) + | + +-------------------- Logical Volume number + +The device naming scheme is: + + /dev/cciss/c0d0 Controller 0, disk 0, whole device + /dev/cciss/c0d0p1 Controller 0, disk 0, partition 1 + /dev/cciss/c0d0p2 Controller 0, disk 0, partition 2 + /dev/cciss/c0d0p3 Controller 0, disk 0, partition 3 + + /dev/cciss/c1d1 Controller 1, disk 1, whole device + /dev/cciss/c1d1p1 Controller 1, disk 1, partition 1 + /dev/cciss/c1d1p2 Controller 1, disk 1, partition 2 + /dev/cciss/c1d1p3 Controller 1, disk 1, partition 3 + +.fi +.SS Files in /proc +The files +.I /proc/driver/cciss/cciss[0-9]+ +contain information about +the configuration of each controller. +For example: +.nf + + $ \fBcd /proc/driver/cciss\fP + $ \fBls -l\fP + total 0 + -rw-r--r-- 1 root root 0 2010-09-10 10:38 cciss0 + -rw-r--r-- 1 root root 0 2010-09-10 10:38 cciss1 + -rw-r--r-- 1 root root 0 2010-09-10 10:38 cciss2 + $ \fBcat cciss2\fP + cciss2: HP Smart Array P800 Controller + Board ID: 0x3223103c + Firmware Version: 7.14 + IRQ: 16 + Logical drives: 1 + Current Q depth: 0 + Current # commands on controller: 0 + Max Q depth since init: 1 + Max # commands on controller since init: 2 + Max SG entries since init: 32 + Sequential access devices: 0 + + cciss/c2d0: 36.38GB RAID 0 + +.fi +.SS Files in /sys +.TP +.I /sys/bus/pci/devices//ccissX/cXdY/model +Displays the SCSI INQUIRY page 0 model for logical drive +.I Y +of controller +.IR X . +.TP +.I /sys/bus/pci/devices//ccissX/cXdY/rev +Displays the SCSI INQUIRY page 0 revision for logical drive +.I Y +of controller +.IR X . +.TP +.I /sys/bus/pci/devices//ccissX/cXdY/unique_id +Displays the SCSI INQUIRY page 83 serial number for logical drive +.I Y +of controller +.IR X . +.TP +.I /sys/bus/pci/devices//ccissX/cXdY/vendor +Displays the SCSI INQUIRY page 0 vendor for logical drive +.I Y +of controller +.IR X . +.TP +.I /sys/bus/pci/devices//ccissX/cXdY/block:cciss!cXdY +A symbolic link to +.IR /sys/block/cciss!cXdY . +.TP +.I /sys/bus/pci/devices//ccissX/rescan +When this file is written to, the driver rescans the controller +to discover any new, removed, or modified logical drives. +.TP +.I /sys/bus/pci/devices//ccissX/resettable +A value of 1 displayed in this file indicates that +the "reset_devices=1" kernel parameter (used by +.BR kdump ) +is honored by this controller. +A value of 0 indicates that the +"reset_devices=1" kernel parameter will not be honored. +Some models of Smart Array are not able to honor this parameter. +.TP +.I /sys/bus/pci/devices//ccissX/cXdY/lunid +Displays the 8-byte LUN ID used to address logical drive +.I Y +of controller +.IR X . +.TP +.I /sys/bus/pci/devices//ccissX/cXdY/raid_level +Displays the RAID level of logical drive +.I Y +of controller +.IR X . +.TP +.I /sys/bus/pci/devices//ccissX/cXdY/usage_count +Displays the usage count (number of opens) of logical drive +.I Y +of controller +.IR X . +.SS SCSI tape drive and medium changer support +SCSI sequential access devices and medium changer devices are supported and +appropriate device nodes are automatically created (e.g., +.IR /dev/st0 , +.IR /dev/st1 , +etc.; see +.BR st (4) +for more details.) +You must enable "SCSI tape drive support for Smart Array 5xxx" and +"SCSI support" in your kernel configuration to be able to use SCSI +tape drives with your Smart Array 5xxx controller. + +Additionally, note that the driver will not engage the SCSI core at +init time. +The driver must be directed to dynamically engage the SCSI core via +the /proc file-system entry, +which the "block" side of the driver creates as +.I /proc/driver/cciss/cciss* +at runtime. +This is because at driver init time, +the SCSI core may not yet be initialized (because the driver is a block +driver) and attempting to register it with the SCSI core in such a case +would cause a hang. +This is best done via an initialization script +(typically in +.IR /etc/init.d , +but could vary depending on distribution). +For example: +.nf + + for x in /proc/driver/cciss/cciss[0-9]* + do + echo "engage scsi" > $x + done + +.fi +Once the SCSI core is engaged by the driver, it cannot be disengaged +(except by unloading the driver, if it happens to be linked as a module.) + +Note also that if no sequential access devices or medium changers are +detected, the SCSI core will not be engaged by the action of the above +script. + +.SS Hot plug support for SCSI tape drives + +Hot plugging of SCSI tape drives is supported, with some caveats. +The +.B cciss +driver must be informed that changes to the SCSI bus +have been made. +This may be done via the /proc file system. +For example: + + echo "rescan" > /proc/scsi/cciss0/1 + +This causes the driver to: +.RS +.IP 1. 3 +query the adapter about changes to the +physical SCSI buses and/or fibre channel arbitrated loop, and +.IP 2. +make note of any new or removed sequential access devices +or medium changers. +.RE +.LP +The driver will output messages indicating which +devices have been added or removed and the controller, bus, target and +lun used to address each device. +The driver then notifies the SCSI midlayer +of these changes. + +Note that the naming convention of the /proc file-system entries +contains a number in addition to the driver name +(e.g., "cciss0" +instead of just "cciss", which you might expect). + +Note: +.I Only +sequential access devices and medium changers are presented +as SCSI devices to the SCSI midlayer by the +.B cciss +driver. +Specifically, physical SCSI disk drives are +.I not +presented to the SCSI midlayer. +The only disk devices that are presented to the kernel are logical +drives that the array controller constructs from regions on +the physical drives. +The logical drives are presented to the block layer +(not to the SCSI midlayer). +It is important for the driver to prevent the kernel from accessing the +physical drives directlyi, since these drives are used by the array +controller to construct the logical drives. +.SS SCSI error handling for tape drives and medium changers +The Linux SCSI midlayer provides an error-handling protocol that +is initiated whenever a SCSI command fails to complete within a +certain amount of time (which can vary depending on the command). +The +.B cciss +driver participates in this protocol to some extent. +The normal protocol is a four-step process: +.IP * 3 +First, the device is told to abort the command. +.IP * +If that doesn't work, the device is reset. +.IP * +If that doesn't work, the SCSI bus is reset. +.IP * +If that doesn't work the host bus adapter is reset. +.LP +The +.B cciss +driver is a block +driver as well as a SCSI driver and only the tape drives and medium +changers are presented to the SCSI midlayer +Furthermore, unlike more +straightforward SCSI drivers, disk I/O continues through the block +side during the SCSI error-recovery process +Therefore, the +.B cciss +driver implements only the first two of these actions, +aborting the command, and resetting the device. +Note also that most tape drives will not oblige +in aborting commands, and sometimes it appears they will not even +obey a reset command, though in most circumstances they will. +If the command cannot be aborted and the device cannot be +reset, the device will be set offline. + +In the event that the error-handling code is triggered and a tape drive is +successfully reset or the tardy command is successfully aborted, the +tape drive may still not allow I/O to continue until some command +is issued that positions the tape to a known position. +Typically you must rewind the tape (by issuing +.I "mt -f /dev/st0 rewind" +for example) before I/O can proceed again to a tape drive that was reset. +.SH "SEE ALSO" +.BR cciss_vol_status (8), +.BR hpsa (4), +.BR hpacucli (8), +.BR hpacuxe (8), +.IR http://cciss.sf.net , +and the Linux kernel source files +.I Documentation/blockdev/cciss.txt +and +.I Documentation/ABI/testing/sysfs-bus-pci-devices-cciss +.\" .SH AUTHORS +.\" Don Brace, Steve Cameron, Chase Maupin, Mike Miller, Michael Ni, +.\" Charles White, Francis Wiran +.\" and probably some other people. diff --git a/original/man4/console_codes.4 b/original/man4/console_codes.4 index 2a806b7b..d939dc3e 100644 --- a/original/man4/console_codes.4 +++ b/original/man4/console_codes.4 @@ -18,7 +18,7 @@ .\" .\" 2006-05-27, Several corrections - Thomas E. Dickey .\" -.TH CONSOLE_CODES 4 2008-01-01 "Linux" "Linux Programmer's Manual" +.TH CONSOLE_CODES 4 2011-09-15 "Linux" "Linux Programmer's Manual" .SH NAME console_codes \- Linux console escape and control sequences .SH DESCRIPTION @@ -175,7 +175,7 @@ and this entire sequence is ignored. .PP The action of a CSI sequence is determined by its final character. .TS -l l l. +l l l l. @ ICH Insert the indicated # of blank characters. A CUU Move cursor up the indicated # of rows. B CUD Move cursor down the indicated # of rows. @@ -188,6 +188,9 @@ H CUP Move cursor to the indicated row, column (origin at 1,1). J ED Erase display (default: from cursor to end of display). ESC [ 1 J: erase from start to cursor. ESC [ 2 J: erase whole display. + ESC [ 3 J: erase whole display including scroll-back + buffer (since Linux 3.0). +.\" ESC [ 3 J: commit f8df13e0a901fe55631fed66562369b4dba40f8b K EL Erase line (default: from cursor to end of line). ESC [ 1 K: erase from start of line to cursor. ESC [ 2 K: erase whole line. diff --git a/original/man4/hpsa.4 b/original/man4/hpsa.4 new file mode 100644 index 00000000..4941b38f --- /dev/null +++ b/original/man4/hpsa.4 @@ -0,0 +1,191 @@ +.\" Copyright (C) 2011, Hewlett-Packard Development Company, L.P. +.\" Written by Stephen M. Cameron +.\" Licensed under GNU General Public License version 2 (GPLv2) +.\" +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH HPSA 4 2011-09-21 "Linux" "Linux Programmer's Manual" +.SH NAME +hpsa \- HP Smart Array SCSI driver +.SH SYNOPSIS +.nf +modprobe hpsa [ hpsa_allow_any=1 ] +.fi +.SH DESCRIPTION +.B hpsa +is a SCSI driver for HP Smart Array RAID controllers. +.SS Options +.IR "hpsa_allow_any=1" : +This option allows the driver to attempt to operate on +any HP Smart Array hardware RAID controller, +even if it is not explicitly known to the driver. +This allows newer hardware to work with older drivers. +Typically this is used to allow installation of +operating systems from media that predates the +RAID controller, though it may also be used to enable +.B hpsa +to drive older controllers that would normally be handled by the +.BR cciss (4) +driver. +These older boards have not been tested and are +not supported with +.BR hpsa , +and +.BR cciss (4) +should still be used for these. +.SS Supported Hardware +The +.B hpsa +driver supports the following Smart Array boards: +.nf + + Smart Array P700M + Smart Array P212 + Smart Array P410 + Smart Array P410i + Smart Array P411 + Smart Array P812 + Smart Array P712m + Smart Array P711m + StorageWorks P1210m + +.fi +.SS Configuration Details +To configure HP Smart Array controllers, +use the HP Array Configuration Utility (either +.BR hpacuxe (8) +or +.BR hpacucli (8)) +or the Offline ROM-based Configuration Utility (ORCA) +run from the Smart Array's option ROM at boot time. +.SH FILES +.SS Device Nodes +Logical drives are accessed via the SCSI disk driver +.RB ( sd (4)), +tape drives via the SCSI tape driver +.RB ( st (4)), +and +the RAID controller via the SCSI generic driver +.RB ( sg (4)), +with device nodes named +.IR /dev/sd*, +.IR /dev/st* , +and +.IR /dev/sg* , +respectively. +.SS HPSA-Specific Host Attribute Files in /sys +.TP +.I /sys/class/scsi_host/host*/rescan +This is a write-only attribute. +Writing to this attribute will cause the driver to scan for +new, changed, or removed devices (e.g. hot-plugged tape drives, +or newly configured or deleted logical drives, etc.) +and notify the SCSI midlayer of any changes detected. +Normally a rescan is triggered automatically +by HP's Array Configuration Utility (either the GUI or the +command-line variety); +thus, for logical drive changes, the user should not +normally have to use this attribute. +This attribute may be useful when hot plugging devices like tape drives, +or entire storage boxes containing pre-configured logical drives. +.TP +.I /sys/class/scsi_host/host*/firmware_revision +This attribute contains the firmware version of the Smart Array. + +For example: + +.nf + # \fBcd /sys/class/scsi_host/host4\fP + # \fBcat firmware_revision\fP + 7.14 +.fi + +.SS HPSA-Specific Disk Attribute Files in /sys +.TP +.I /sys/class/scsi_disk/c:b:t:l/device/unique_id +This attribute contains a 32 hex-digit unique ID for each logical drive. +.nf + +For example: + + # \fBcd /sys/class/scsi_disk/4:0:0:0/device\fP + # \fBcat unique_id\fP + 600508B1001044395355323037570F77 +.fi +.TP +.I /sys/class/scsi_disk/c:b:t:l/device/raid_level +This attribute contains the RAID level of each logical drive. +.nf + +For example: + + # \fBcd /sys/class/scsi_disk/4:0:0:0/device\fP + # \fBcat raid_level\fP + RAID 0 +.fi +.TP +.I /sys/class/scsi_disk/c:b:t:l/device/lunid +This attribute contains the 16 hex-digit (8 byte) LUN ID +by which a logical drive or physical device can be addressed. +.IR c : b : t : l +are the controller, bus, target and lun of the device. +.nf + +For example: + + # \fBcd /sys/class/scsi_disk/4:0:0:0/device\fP + # \fBcat lunid\fP + 0x0000004000000000 +.fi +.SS Supported ioctl() operations +For compatibility with applications written for the +.BR cciss (4) +driver, many, but +not all of the ioctls supported by the +.BR cciss (4) +driver are also supported by the +.B hpsa +driver. +The data structures used by these ioctls are described in +the kernel source file +.IR include/linux/cciss_ioctl.h . +.TP +.BR CCISS_DEREGDISK ", " CCISS_REGNEWDISK ", " CCISS_REGNEWD +These three ioctls all do exactly the same thing, +which is to cause the driver to rescan for new devices. +This does exactly the same thing as writing to the +hpsa-specific host "rescan" attribute. +.TP +.B CCISS_GETPCIINFO +Returns PCI domain, bus, device and function and "board ID" (PCI subsystem ID). +.TP +.B CCISS_GETDRIVVER +Returns driver version in three bytes encoded as: +.sp + (major_version << 16) | (minor_version << 8) | + (subminor_version) +.TP +.BR CCISS_PASSTHRU ", " CCISS_BIG_PASSTHRU +Allows "BMIC" and "CISS" commands to be passed through to the Smart Array. +These are used extensively by the HP Array Configuration Utility, +SNMP storage agents, etc. +See +.I cciss_vol_status +at +.I http://cciss.sf.net +for some examples. +.SH "SEE ALSO" +.BR cciss (4), +.BR sd (4), +.BR st (4), +.BR cciss_vol_status (8), +.BR hpacucli (8), +.BR hpacuxe (8), +.IR http://cciss.sf.net , +and the Linux kernel source files +.I Documentation/scsi/hpsa.txt +and +.I Documentation/ABI/testing/sysfs-bus-pci-devices-cciss +.\" .SH AUTHORS +.\" Don Brace, Steve Cameron, Tom Lawler, Mike Miller, Scott Teel +.\" and probably some other people. diff --git a/original/man4/mouse.4 b/original/man4/mouse.4 index 29b4da07..c701bc45 100644 --- a/original/man4/mouse.4 +++ b/original/man4/mouse.4 @@ -37,7 +37,7 @@ center; r c l. pin name used for 2 RX Data -3 TX -12 V, Imax = 10 mA +3 TX \-12 V, Imax = 10 mA 4 DTR +12 V, Imax = 10 mA 7 RTS +12 V, Imax = 10 mA 5 GND Ground diff --git a/original/man5/proc.5 b/original/man5/proc.5 index 7c5ca4e3..6abdd8c6 100644 --- a/original/man5/proc.5 +++ b/original/man5/proc.5 @@ -58,7 +58,7 @@ .\" to see what information could be imported from that file .\" into this file. .\" -.TH PROC 5 2010-10-30 "Linux" "Linux Programmer's Manual" +.TH PROC 5 2011-09-15 "Linux" "Linux Programmer's Manual" .SH NAME proc \- process information pseudo-file system .SH DESCRIPTION @@ -949,6 +949,9 @@ Thread group ID (i.e., Process ID). Thread ID (see .BR gettid (2)). .IP * +.IR PPid : +PID of parent process. +.IP * .IR TracerPid : PID of process tracing this process (0 if not being traced). .IP * @@ -989,6 +992,17 @@ Page table entries size (since Linux 2.6.10). .IR Threads : Number of threads in process containing this thread. .IP * +.IR SigQ : +This field contains two slash-separated numbers that relate to +queued signals for the real user ID of this process. +The first of these is the number of currently queued +signals for this real user ID, and the second is the +resource limit on the number of queued signals for this process +(see the description of +.BR RLIMIT_SIGPENDING +in +.BR getrlimit (2)). +.IP * .IR SigPnd ", " ShdPnd : Number of signals pending for thread and for process as a whole (see .BR pthreads (7) @@ -1126,7 +1140,7 @@ are the same as those provided by : .in +4n .nf -cat /lib/modules/$(uname -r)/build/.config +cat /lib/modules/$(uname \-r)/build/.config .fi .in .IP diff --git a/original/man5/tzfile.5 b/original/man5/tzfile.5 index 51a1c8ee..3b938dd7 100644 --- a/original/man5/tzfile.5 +++ b/original/man5/tzfile.5 @@ -13,7 +13,7 @@ begin with the magic characters "TZif" to identify then as timezone information files, followed by a character identifying the version of the file's format (as of 2005, either an ASCII NUL ('\\0') or a '2') -followed by fifteen bytes containing zeroes reserved for future use, +followed by fifteen bytes containing zeros reserved for future use, followed by six four-byte values of type .IR long , written in a "standard" byte order diff --git a/original/man7/arp.7 b/original/man7/arp.7 index 59973aef..12fb57cd 100644 --- a/original/man7/arp.7 +++ b/original/man7/arp.7 @@ -100,7 +100,7 @@ capability or an effective UID of 0. .I arp_pa must be an .B AF_INET -socket and +address and .I arp_ha must have the same type as the device which is specified in .IR arp_dev . diff --git a/original/man7/capabilities.7 b/original/man7/capabilities.7 index a751b213..4032a19d 100644 --- a/original/man7/capabilities.7 +++ b/original/man7/capabilities.7 @@ -41,8 +41,10 @@ .\" Add text noting that if we set the effective flag for one file .\" capability, then we must also set the effective flag for all .\" other capabilities where the permitted or inheritable bit is set. +.\" 2011-09-07, mtk/Serge hallyn: Add CAP_SYSLOG +.\" FIXME: Linux 3.0 added CAP_WAKE_ALARM .\" -.TH CAPABILITIES 7 2010-06-19 "Linux" "Linux Programmer's Manual" +.TH CAPABILITIES 7 2011-09-07 "Linux" "Linux Programmer's Manual" .SH NAME capabilities \- overview of Linux capabilities .SH DESCRIPTION @@ -240,6 +242,12 @@ Perform a range of system administration operations including: and .BR setdomainname (2); .IP * +perform privileged +.BR syslog (2) +operations (since Linux 2.6.37, +.BR CAP_SYSLOG +should be used to permit such operations); +.IP * perform .B IPC_SET and @@ -421,6 +429,14 @@ set real-time (hardware) clock. .B CAP_SYS_TTY_CONFIG Use .BR vhangup (2). +.TP +.BR CAP_SYSLOG " (since Linux 2.6.37)" +Perform privileged +.BR syslog (2) +operations. +See +.BR syslog (2) +for information on which operations require privilege. .\" .SS Past and Current Implementation A full implementation of capabilities requires that: @@ -682,9 +698,14 @@ A thread can determine if a capability is in its bounding set using the operation. Removing capabilities from the bounding set is only supported if file -capabilities are compiled into the kernel -(CONFIG_SECURITY_FILE_CAPABILITIES). -In that case, the +capabilities are compiled into the kernel. +In kernels before Linux 2.6.33, +file capabilities were an optional feature configurable via the +CONFIG_SECURITY_FILE_CAPABILITIES +option. +Since Linux 2.6.33, the configuration option has been removed +and file capabilities are always part of the kernel. +When file capabilities are compiled into the kernel, the .B init process (the ancestor of all processes) begins with a full bounding set. If file capabilities are not compiled into the kernel, then @@ -845,7 +866,7 @@ flags are inherited by child processes. During an .BR execve (2), all of the flags are preserved, except -.B SECURE_KEEP_CAPS +.B SECBIT_KEEP_CAPS which is always cleared. An application can use the following call to lock itself, diff --git a/original/man7/complex.7 b/original/man7/complex.7 index 5680f092..2ae32d74 100644 --- a/original/man7/complex.7 +++ b/original/man7/complex.7 @@ -1,7 +1,7 @@ .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de) .\" Distributed under GPL .\" -.TH COMPLEX 7 2009-07-25 "" "Linux Programmer's Manual" +.TH COMPLEX 7 2011-09-16 "" "Linux Programmer's Manual" .SH NAME complex \- basics of complex mathematics .SH SYNOPSIS @@ -51,7 +51,28 @@ main(void) .fi .SH "SEE ALSO" .BR cabs (3), +.BR cacos (3), +.BR cacosh (3), .BR carg (3), +.BR casin (3), +.BR casinh (3), +.BR catan (3), +.BR catanh (3), +.BR ccos (3), +.BR ccosh (3), +.BR cerf (3), .BR cexp (3), +.BR cexp2 (3), .BR cimag (3), -.BR creal (3) +.BR clog (3), +.BR clog10 (3), +.BR clog2 (3), +.BR conj (3), +.BR cpow (3), +.BR cproj (3), +.BR creal (3), +.BR csin (3), +.BR csinh (3), +.BR csqrt (3), +.BR ctan (3), +.BR ctanh (3) diff --git a/original/man7/credentials.7 b/original/man7/credentials.7 index ba1ec16e..a08c85ce 100644 --- a/original/man7/credentials.7 +++ b/original/man7/credentials.7 @@ -52,7 +52,7 @@ affected by the call, for example: .BR setpgid (2), .\" .BR getsid (2), .BR setsid (2), -.BR sigqueue (2), +.BR sigqueue (3), and .BR waitpid (2). .\" .BR waitid (2), diff --git a/original/man7/feature_test_macros.7 b/original/man7/feature_test_macros.7 index e08bd7c7..91ac5f15 100644 --- a/original/man7/feature_test_macros.7 +++ b/original/man7/feature_test_macros.7 @@ -22,7 +22,7 @@ .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" -.TH FEATURE_TEST_MACROS 7 2010-09-10 "Linux" "Linux Programmer's Manual" +.TH FEATURE_TEST_MACROS 7 2011-09-17 "Linux" "Linux Programmer's Manual" .SH NAME feature_test_macros \- feature test macros .SH SYNOPSIS @@ -196,6 +196,16 @@ This macro is also implicitly defined if .B _XOPEN_SOURCE is defined with a value of 500 or more. .TP +.B _ISOC95_SOURCE +Exposes ISO C (1990) Amendment 1 definitions (also known as C95). +This macro is recognized since glibc 2.12. +The primary change in C95 was support for international character sets. +The C95 changes were included in the subsequent C99 standard +(in other words, +.B _ISOC99_SOURCE +implies +.BR _ISOC95_SOURCE ). +.TP .B _ISOC99_SOURCE Exposes C99 extensions to ISO C (1990). This macro is recognized since glibc 2.1.3; @@ -485,12 +495,12 @@ _POSIX_C_SOURCE defined: 200809L _BSD_SOURCE defined _SVID_SOURCE defined _ATFILE_SOURCE defined -$ \fBcc -D_XOPEN_SOURCE=500 ftm.c\fP +$ \fBcc \-D_XOPEN_SOURCE=500 ftm.c\fP $ \fB./a.out\fP _POSIX_SOURCE defined _POSIX_C_SOURCE defined: 199506L _XOPEN_SOURCE defined: 500 -$ \fBcc -D_GNU_SOURCE ftm.c\fP +$ \fBcc \-D_GNU_SOURCE ftm.c\fP $ \fB./a.out\fP _POSIX_SOURCE defined _POSIX_C_SOURCE defined: 200809L diff --git a/original/man7/ip.7 b/original/man7/ip.7 index 4561b2fb..9f560df5 100644 --- a/original/man7/ip.7 +++ b/original/man7/ip.7 @@ -9,7 +9,7 @@ .\" .\" FIXME: Document IP_MINTTL, added in Linux 2.6.34 .\" -.TH IP 7 2010-10-24 "Linux" "Linux Programmer's Manual" +.TH IP 7 2011-09-22 "Linux" "Linux Programmer's Manual" .SH NAME ip \- Linux IPv4 protocol implementation .SH SYNOPSIS @@ -310,27 +310,36 @@ Only valid as a .\" Precisely: 2.1.124 Set or receive the Path MTU Discovery setting for a socket. When enabled, Linux will perform Path MTU Discovery -as defined in RFC\ 1191 -on this socket. -The don't-fragment flag is set on all outgoing datagrams. -The system-wide default is controlled by the -.I /proc/sys/net/ipv4/ip_no_pmtu_disc -file for +as defined in RFC\ 1191 on .B SOCK_STREAM -sockets, and disabled on all others. +sockets. For .RB non- SOCK_STREAM -sockets, it is the user's responsibility to packetize the data -in MTU sized chunks and to do the retransmits if necessary. -The kernel will reject packets that are bigger than the known -path MTU if this flag is set (with -.B EMSGSIZE -). +sockets, +.B IP_PMTUDISC_DO +forces the don't-fragment flag to be set on all outgoing packets. +It is the user's responsibility to packetize the data +in MTU-sized chunks and to do the retransmits if necessary. +The kernel will reject (with +.BR EMSGSIZE ) +datagrams that are bigger than the known path MTU. +.B IP_PMTUDISC_WANT +will fragment a datagram if needed according to the path MTU, +or will set the don't-fragment flag otherwise. + +The system-wide default can be toggled between +.B IP_PMTUDISC_WANT +and +.B IP_PMTUDISC_DONT +by writing (respectively, zero and nonzero values) to the +.I /proc/sys/net/ipv4/ip_no_pmtu_disc +file. + .TS tab(:); c l l l. -Path MTU discovery flags:Meaning +Path MTU discovery value:Meaning IP_PMTUDISC_WANT:Use per-route settings. IP_PMTUDISC_DONT:Never do Path MTU Discovery. IP_PMTUDISC_DO:Always do Path MTU Discovery. @@ -343,10 +352,10 @@ When it is connected to a specific peer with .BR connect (2), the currently known path MTU can be retrieved conveniently using the .B IP_MTU -socket option (e.g., after a +socket option (e.g., after an .B EMSGSIZE error occurred). -It may change over time. +The path MTU may change over time. For connectionless sockets with many destinations, the new MTU for a given destination can also be accessed using the error queue (see diff --git a/original/man7/ipv6.7 b/original/man7/ipv6.7 index 1e3b4c61..0050ecd3 100644 --- a/original/man7/ipv6.7 +++ b/original/man7/ipv6.7 @@ -4,7 +4,7 @@ .\" and in case of nontrivial modification author and date .\" of the modification is added to the header. .\" $Id: ipv6.7,v 1.3 2000/12/20 18:10:31 ak Exp $ -.TH IPV6 7 2009-02-28 "Linux" "Linux Programmer's Manual" +.TH IPV6 7 2011-09-08 "Linux" "Linux Programmer's Manual" .SH NAME ipv6, AF_INET6 \- Linux IPv6 protocol implementation .SH SYNOPSIS @@ -103,7 +103,7 @@ anycast to address the nearest member of a group of hosts (not implemented in Linux), IPv4-on-IPv6 to address a IPv4 host, and other reserved address types. .PP -The address notation for IPv6 is a group of 16 2-digit hexadecimal +The address notation for IPv6 is a group of 8 4-digit hexadecimal numbers, separated with a \(aq:\(aq. \&"::" stands for a string of 0 bits. Special addresses are ::1 for loopback and ::FFFF: @@ -149,11 +149,11 @@ structure. .B IPV6_MTU Set the MTU to be used for the socket. The MTU is limited by the device -MTU or the path mtu when path mtu discovery is enabled. +MTU or the path MTU when path MTU discovery is enabled. Argument is a pointer to integer. .TP .B IPV6_MTU_DISCOVER -Control path mtu discovery on the socket. +Control path-MTU discovery on the socket. See .B IP_MTU_DISCOVER in diff --git a/original/man7/mdoc.7 b/original/man7/mdoc.7 index 4ed6f4d3..8d672f7c 100644 --- a/original/man7/mdoc.7 +++ b/original/man7/mdoc.7 @@ -429,10 +429,10 @@ Special defines (such as the standards macro). .Xr man 7 , .Xr man-pages 7 .Sh COLOPHON -This page is part of release 3.32 of the Linux +This page is part of release 3.34 of the Linux .Em man-pages project. A description of the project, and information about reporting bugs, can be found at -http://www.kernel.org/doc/man-pages/. +http://man7.org/linux/man-pages/. diff --git a/original/man7/mdoc.samples.7 b/original/man7/mdoc.samples.7 index c08892b8..83c14469 100644 --- a/original/man7/mdoc.samples.7 +++ b/original/man7/mdoc.samples.7 @@ -2944,10 +2944,10 @@ and certainly should be able to. .Xr groff_mdoc 7 , .Xr mdoc 7 .Sh COLOPHON -This page is part of release 3.32 of the Linux +This page is part of release 3.34 of the Linux .Em man-pages project. A description of the project, and information about reporting bugs, can be found at -http://www.kernel.org/doc/man-pages/. +http://man7.org/linux/man-pages/. diff --git a/original/man7/operator.7 b/original/man7/operator.7 index 3d8c42e6..db17062a 100644 --- a/original/man7/operator.7 +++ b/original/man7/operator.7 @@ -35,9 +35,9 @@ .\" .\" 2007-12-08, mtk, Converted from mdoc to man macros .\" -.TH OPERATOR 7 2007-12-08 "Linux" "Linux Programmer's Manual" +.TH OPERATOR 7 2011-09-09 "Linux" "Linux Programmer's Manual" .SH NAME -C operator \- C operator precedence and order of evaluation +operator \- C operator precedence and order of evaluation .SH DESCRIPTION This manual page lists C operators and their precedence in evaluation. .nf diff --git a/original/man7/path_resolution.7 b/original/man7/path_resolution.7 index ff682d94..5d3dc361 100644 --- a/original/man7/path_resolution.7 +++ b/original/man7/path_resolution.7 @@ -156,7 +156,7 @@ If the pathname (or some intermediate pathname obtained while resolving symbolic links) is too long, an .B ENAMETOOLONG -error is returned ("File name too long"). +error is returned ("Filename too long"). .SS "Empty pathname" In the original UNIX, the empty pathname referred to the current directory. Nowadays POSIX decrees that an empty pathname must not be resolved diff --git a/original/man7/rtld-audit.7 b/original/man7/rtld-audit.7 index 9867246b..ca09569f 100644 --- a/original/man7/rtld-audit.7 +++ b/original/man7/rtld-audit.7 @@ -450,7 +450,7 @@ These values can be modified by the caller, and the changes will be visible to the caller of the PLT entry. In the current GNU implementation, the return value of -.BR la_pltexit() +.BR la_pltexit () is ignored. .\" This differs from Solaris, where an audit library that monitors .\" symbol binding should return the value of the 'retval' argument diff --git a/original/man7/sem_overview.7 b/original/man7/sem_overview.7 index 312e4bda..ff14ec75 100644 --- a/original/man7/sem_overview.7 +++ b/original/man7/sem_overview.7 @@ -85,7 +85,7 @@ is shared between multiple threads (a or processes (a .IR "process-shared semaphore" ). A thread-shared semaphore is placed in an area of memory shared -between by the threads of a process, for example, a global variable. +between the threads of a process, for example, a global variable. A process-shared semaphore must be placed in a shared memory region (e.g., a System V shared memory segment created using .BR shmget (2), diff --git a/original/man7/sigevent.7 b/original/man7/sigevent.7 index 229cc060..4d301c1c 100644 --- a/original/man7/sigevent.7 +++ b/original/man7/sigevent.7 @@ -21,9 +21,9 @@ .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" -.TH SIGEVENT 7 2010-10-04 "GNU" "Linux Programmer's Manual" +.TH SIGEVENT 7 2011-09-09 "GNU" "Linux Programmer's Manual" .SH NAME -struct sigevent \- structure for notification from asynchronous routines +sigevent \- structure for notification from asynchronous routines .SH SYNOPSIS .nf diff --git a/original/man7/signal.7 b/original/man7/signal.7 index c4516c24..57fb4033 100644 --- a/original/man7/signal.7 +++ b/original/man7/signal.7 @@ -41,7 +41,7 @@ .\" Added section on stop/cont signals interrupting syscalls. .\" 2008-10-05, mtk: various additions .\" -.TH SIGNAL 7 2010-09-19 "Linux" "Linux Programmer's Manual" +.TH SIGNAL 7 2011-09-18 "Linux" "Linux Programmer's Manual" .SH NAME signal \- overview of signals .SH DESCRIPTION @@ -124,7 +124,7 @@ Sends a signal to a specified thread within a specific process. (This is the system call used to implement .BR pthread_kill (3).) .TP -.BR sigqueue (2) +.BR sigqueue (3) Sends a real-time signal with accompanying data to a specified process. .SS Waiting for a Signal to be Caught The following system calls suspend execution of the calling process @@ -375,8 +375,6 @@ does not exceed Unlike standard signals, real-time signals have no predefined meanings: the entire set of real-time signals can be used for application-defined purposes. -(Note, however, that the LinuxThreads implementation uses the first -three real-time signals.) .PP The default action for an unhandled real-time signal is to terminate the receiving process. @@ -388,7 +386,7 @@ By contrast, if multiple instances of a standard signal are delivered while that signal is currently blocked, then only one instance is queued. .IP 2. 4 If the signal is sent using -.BR sigqueue (2), +.BR sigqueue (3), an accompanying value (either an integer or a pointer) can be sent with the signal. If the receiving process establishes a handler for this signal using the @@ -849,6 +847,7 @@ signal 29 is .BR getrlimit (2), .BR kill (2), .BR killpg (2), +.BR rt_sigqueueinfo (2), .BR setitimer (2), .BR setrlimit (2), .BR sgetmask (2), @@ -858,7 +857,6 @@ signal 29 is .BR signalfd (2), .BR sigpending (2), .BR sigprocmask (2), -.BR sigqueue (2), .BR sigsuspend (2), .BR sigwaitinfo (2), .BR abort (3), @@ -866,6 +864,7 @@ signal 29 is .BR longjmp (3), .BR raise (3), .BR pthread_sigqueue (3), +.BR sigqueue (3), .BR sigset (3), .BR sigsetops (3), .BR sigvec (3), diff --git a/original/man7/socket.7 b/original/man7/socket.7 index be4f8b45..ddd148ca 100644 --- a/original/man7/socket.7 +++ b/original/man7/socket.7 @@ -238,7 +238,7 @@ Note that this only works for some socket types, particularly .B AF_INET sockets. It is not supported for packet sockets (use normal -.BR bind (8) +.BR bind (2) there). .TP .B SO_BROADCAST diff --git a/original/man7/spufs.7 b/original/man7/spufs.7 index ee652986..9caea7c7 100644 --- a/original/man7/spufs.7 +++ b/original/man7/spufs.7 @@ -735,7 +735,7 @@ mappings are supported. Read-only file containing the physical SPU number that the SPU context is running on. When the context is not running, this file contains the -string "-1". +string "\-1". The physical SPU number is given by an ASCII hex string. .TP diff --git a/original/man7/tcp.7 b/original/man7/tcp.7 index 3903c9d4..256f6222 100644 --- a/original/man7/tcp.7 +++ b/original/man7/tcp.7 @@ -940,6 +940,8 @@ internal protocol processing and factors such as delayed ack timeouts occurring and data transfer. This option should not be used in code intended to be portable. +.\" FIXME Document TCP_USER_TIMEOUT (new in 2.6.37) +.\" See commit dca43c75e7e545694a9dd6288553f55c53e2a3a3 .TP .BR TCP_SYNCNT " (since Linux 2.4)" .\" Precisely: since 2.3.18 diff --git a/original/man7/unix.7 b/original/man7/unix.7 index b53328b3..165cec0c 100644 --- a/original/man7/unix.7 +++ b/original/man7/unix.7 @@ -12,7 +12,7 @@ .\" address that can appear in the sockaddr_un structure: pathname, .\" unnamed, and abstract. .\" -.TH UNIX 7 2010-11-15 "Linux" "Linux Programmer's Manual" +.TH UNIX 7 2011-09-15 "Linux" "Linux Programmer's Manual" .SH NAME unix, AF_UNIX, AF_LOCAL \- Sockets for local interprocess communication @@ -284,7 +284,7 @@ The correct syntax is: .RS .nf .BI int " value"; -.IB error " = ioctl(" tcp_socket ", " ioctl_type ", &" value ");" +.IB error " = ioctl(" unix_socket ", " ioctl_type ", &" value ");" .fi .RE .PP @@ -346,7 +346,7 @@ specified on a connected socket. .TP .B ENOENT The pathname in the remote address specified to -.BR connect () +.BR connect (2) did not exist. .TP .B ENOMEM @@ -430,6 +430,11 @@ UNIX domain stream sockets do not support the notion of out-of-band data. .SH EXAMPLE See .BR bind (2). + +For an example of the use of +.BR SCM_RIGHTS +see +.BR cmsg (3). .SH "SEE ALSO" .BR recvmsg (2), .BR sendmsg (2), diff --git a/translation_list b/translation_list index 8333c574..b3913532 100644 --- a/translation_list +++ b/translation_list @@ -1,2087 +1,2092 @@ -○:LDP man-pages:3.32:2007/11/15:intro:1:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2000/10/30:ldd:1:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.32:2008/11/14:time:1:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:_Exit:2:_exit:2: -@:LDP man-pages:3.32:2010/11/01:__clone2:2:clone:2: -○:LDP man-pages:3.32:2010/09/20:_exit:2:2001/12/14::ysato@h4.dion.ne.jp:Yuichi SATO: -@:LDP man-pages:3.32:1995/06/10:_llseek:2:llseek:2: -@:LDP man-pages:3.32:2010/08/31:_newselect:2:select:2: -○:LDP man-pages:3.32:2007/12/19:_syscall:2:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/11/20:_sysctl:2:sysctl:2: -○:LDP man-pages:3.32:2010/09/10:accept:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/10:accept4:2:accept:2: -☆:LDP man-pages:3.29=>3.32:2010/10/24:access:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/06/16:acct:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -×:LDP man-pages:3.32:2010/02/25:add_key:2::::: -○:LDP man-pages:3.32:2004/05/27:adjtimex:2:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/07/05:afs_syscall:2:unimplemented:2: -○:LDP man-pages:3.32:2008/06/12:alarm:2:1997/02/22::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2007/05/31:alloc_hugepages:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/12/26:arch_prctl:2:2005/11/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/10/09:arm_fadvise:2:posix_fadvise:2: -@:LDP man-pages:3.32:2010/10/09:arm_fadvise64_64:2:posix_fadvise:2: -@:LDP man-pages:3.32:2010/10/09:arm_sync_file_range:2:sync_file_range:2: -○:LDP man-pages:3.32:2004/06/17:bdflush:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2007/12/28:bind:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/07/05:break:2:unimplemented:2: -○:LDP man-pages:3.32:2010/09/20:brk:2:2007/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/05/26:cacheflush:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:capget:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:capset:2:capget:2: -☆:LDP man-pages:3.31=>3.32:2010/11/25:chdir:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2010/09/26:chmod:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.31=>3.32:2010/11/22:chown:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/11/22:chown32:2:chown:2: -○:LDP man-pages:3.32:2010/09/20:chroot:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2010/02/03:clock_getres:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/02/03:clock_gettime:2:clock_getres:2: -☆:LDP man-pages:3.31=>3.32:2010/12/03:clock_nanosleep:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/02/03:clock_settime:2:clock_getres:2: -○:LDP man-pages:3.32:2010/11/01:clone:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/01:clone2:2:clone:2: -○:LDP man-pages:3.32:2007/12/28:close:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/12/03:connect:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/15:creat:2:open:2: -○:LDP man-pages:3.32:2007/06/03:create_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:0000/00/00:delete_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/10:dup:2:2005/09/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/10:dup2:2:dup:2: -@:LDP man-pages:3.32:2010/09/10:dup3:2:dup:2: -☆:LDP man-pages:3.31=>3.32:2010/12/03:epoll_create:2:2009/03/14::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/12/03:epoll_create1:2:epoll_create:2: -☆:LDP man-pages:3.31=>3.32:2010/12/03:epoll_ctl:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/12/03:epoll_pwait:2:epoll_wait:2: -☆:LDP man-pages:3.31=>3.32:2010/12/03:epoll_wait:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.25=>3.32:2010/08/30:eventfd:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/08/30:eventfd2:2:eventfd:2: -○:LDP man-pages:3.32:2010/01/06:execve:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:exit:2:_exit:2: -○:LDP man-pages:3.32:2008/11/27:exit_group:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.29=>3.32:2010/10/24:faccessat:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/10/09:fadvise64:2:posix_fadvise:2: -@:LDP man-pages:3.32:2010/10/09:fadvise64_64:2:posix_fadvise:2: -○:LDP man-pages:3.32:2010/09/10:fallocate:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/25:fchdir:2:chdir:2: -@:LDP man-pages:3.32:2010/09/26:fchmod:2:chmod:2: -○:LDP man-pages:3.32:2009/12/13:fchmodat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/11/22:fchown:2:chown:2: -@:LDP man-pages:3.32:2010/09/26:fchown32:2:fchown:2: -○:LDP man-pages:3.32:2009/12/13:fchownat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.24=>3.32:2010/11/21:fcntl:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/21:fcntl64:2:fcntl:2: -@:LDP man-pages:3.32:2008/11/07:fdatasync:2:fsync:2: -@:LDP man-pages:3.32:2001/12/01:fgetxattr:2:getxattr:2: -@:LDP man-pages:3.32:2001/12/01:flistxattr:2:listxattr:2: -○:LDP man-pages:3.32:2009/07/25:flock:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/04/27:fork:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/05/31:free_hugepages:2:alloc_hugepages:2: -@:LDP man-pages:3.32:2001/12/01:fremovexattr:2:removexattr:2: -@:LDP man-pages:3.32:2001/12/31:fsetxattr:2:setxattr:2: -@:LDP man-pages:3.32:2010/12/03:fstat:2:stat:2: -@:LDP man-pages:3.32:2010/09/26:fstat64:2:fstat:2: -☆:LDP man-pages:3.31=>3.32:2010/11/21:fstatat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/11/21:fstatat64:2:fstatat:2: -@:LDP man-pages:3.32:2010/11/21:fstatfs:2:statfs:2: -@:LDP man-pages:3.32:2010/09/04:fstatfs64:2:fstatfs:2: -@:LDP man-pages:3.32:2003/08/22:fstatvfs:2:statvfs:3: -○:LDP man-pages:3.32:2008/11/07:fsync:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/21:ftruncate:2:truncate:2: -@:LDP man-pages:3.32:2010/11/21:ftruncate64:2:ftruncate:2: -○:LDP man-pages:3.32:2010/08/29:futex:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2009/12/13:futimesat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:0000/00/00:get_kernel_syms:2:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/08/15:get_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/11/27:get_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/03/15:getcontext:2:2001/12/15::nakano@apm.seikei.ac.jp:NAKANO Takeo: -×:LDP man-pages:3.32:2008/06/03:getcpu:2::::: -@:LDP man-pages:3.32:2010/09/20:getcwd:2:getcwd:3: -☆:LDP man-pages:3.31=>3.32:2010/11/21:getdents:2:2009/03/05::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/11/21:getdents64:2:getdents:2: -○:LDP man-pages:3.32:2009/09/27:getdomainname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:getdtablesize:2:2007/01/14::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/11/22:getegid:2:getgid:2: -@:LDP man-pages:3.32:1993/07/23:getegid32:2:getegid:2: -@:LDP man-pages:3.32:2010/11/22:geteuid:2:getuid:2: -@:LDP man-pages:3.32:2010/11/22:geteuid32:2:geteuid:2: -☆:LDP man-pages:3.31=>3.32:2010/11/22:getgid:2:1997/06/26::suto@av.crl.sony.co.jp:SUTO, Mitsuaki: -@:LDP man-pages:3.32:2010/11/22:getgid32:2:getgid:2: -☆:LDP man-pages:3.31=>3.32:2010/11/22:getgroups:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/22:getgroups32:2:getgroups:2: -@:LDP man-pages:3.32:2010/09/20:gethostid:2:gethostid:3: -○:LDP man-pages:3.32:2010/09/26:gethostname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/03/15:getitimer:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.31=>3.32:2010/11/16:getpagesize:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/12/03:getpeername:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/26:getpgid:2:setpgid:2: -@:LDP man-pages:3.32:2010/09/26:getpgrp:2:setpgid:2: -○:LDP man-pages:3.32:2008/09/23:getpid:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki: -@:LDP man-pages:3.32:2007/07/05:getpmsg:2:unimplemented:2: -@:LDP man-pages:3.32:2008/09/23:getppid:2:getpid:2: -○:LDP man-pages:3.32:2008/05/29:getpriority:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/22:getresgid:2:getresuid:2: -@:LDP man-pages:3.32:2007/12/28:getresgid32:2:getresgid:2: -☆:LDP man-pages:3.31=>3.32:2010/11/22:getresuid:2:2003/11/13::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/11/22:getresuid32:2:getresuid:2: -☆:LDP man-pages:3.30=>3.32:2010/12/03:getrlimit:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.32:2010/09/26:getrusage:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/26:getsid:2:2002/02/03::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2008/12/03:getsockname:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2008/12/03:getsockopt:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2008/04/14:gettid:2:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/03/25:gettimeofday:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.31=>3.32:2010/11/22:getuid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/11/22:getuid32:2:getuid:2: -○:LDP man-pages:3.32:2001/12/01:getxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/07/05:gtty:2:unimplemented:2: -○:LDP man-pages:3.32:1994/08/21:idle:2:2000/01/14::argrath@yo.rim.or.jp:Kentaro Shirakata: -@:LDP man-pages:3.32:1995/11/29:inb:2:outb:2: -@:LDP man-pages:3.32:1995/11/29:inb_p:2:outb:2: -○:LDP man-pages:3.32:0000/00/00:init_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:1995/11/29:inl:2:outb:2: -@:LDP man-pages:3.32:1995/11/29:inl_p:2:outb:2: -☆:LDP man-pages:3.29=>3.32:2010/10/20:inotify_add_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/10/10:inotify_init:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/10/10:inotify_init1:2:inotify_init:2: -○:LDP man-pages:3.32:2010/10/15:inotify_rm_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:1995/11/29:insb:2:outb:2: -@:LDP man-pages:3.32:1995/11/29:insl:2:outb:2: -@:LDP man-pages:3.32:1995/11/29:insw:2:outb:2: -○:LDP man-pages:3.32:2010/11/11:intro:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:1995/11/29:inw:2:outb:2: -@:LDP man-pages:3.32:1995/11/29:inw_p:2:outb:2: -○:LDP man-pages:3.32:2008/06/18:io_cancel:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/06/18:io_destroy:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/07/04:io_getevents:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/06/18:io_setup:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/06/18:io_submit:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2000/09/21:ioctl:2:2011/09/15::tati@kc5.so-net.ne.jp:TACHIBANA Akira: -○:LDP man-pages:3.32:2007/12/29:ioctl_list:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2007/06/15:ioperm:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2004/12/26:iopl:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/07/09:ioprio_get:2:ioprio_set:2: -○:LDP man-pages:3.32:2008/07/09:ioprio_set:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/06/28:ipc:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -×:LDP man-pages:3.32:2010/11/04:kexec_load:2::::: -×:LDP man-pages:3.32:2010/02/25:keyctl:2::::: -○:LDP man-pages:3.32:2009/09/15:kill:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:killpg:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/11/22:lchown:2:chown:2: -@:LDP man-pages:3.32:2010/09/26:lchown32:2:lchown:2: -@:LDP man-pages:3.32:2001/12/01:lgetxattr:2:getxattr:2: -○:LDP man-pages:3.32:2008/08/21:link:2:2005/05/12::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2009/12/13:linkat:2:2007/01/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/11/20:listen:2:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2001/12/01:listxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2001/12/01:llistxattr:2:listxattr:2: -○:LDP man-pages:3.32:1995/06/10:llseek:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2007/07/05:lock:2:unimplemented:2: -○:LDP man-pages:3.32:2004/06/17:lookup_dcookie:2:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2001/12/01:lremovexattr:2:removexattr:2: -○:LDP man-pages:3.32:2010/09/11:lseek:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2001/12/31:lsetxattr:2:setxattr:2: -@:LDP man-pages:3.32:2010/12/03:lstat:2:stat:2: -@:LDP man-pages:3.32:2010/09/26:lstat64:2:lstat:2: -☆:LDP man-pages:3.24=>3.32:2010/06/20:madvise:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/07/05:madvise1:2:unimplemented:2: -○:LDP man-pages:3.32:2008/08/15:mbind:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2010/11/01:migrate_pages:2::::: -○:LDP man-pages:3.32:2008/04/22:mincore:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.25=>3.32:2010/06/26:mkdir:2:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2009/12/13:mkdirat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2010/09/20:mknod:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:mknodat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.24=>3.32:2010/10/30:mlock:2:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/10/30:mlockall:2:mlock:2: -☆:LDP man-pages:3.24=>3.32:2010/06/20:mmap:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/04/22:mmap2:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/06/01:modify_ldt:2:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/10:mount:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/06/11:move_pages:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/08/06:mprotect:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/07/05:mpx:2:unimplemented:2: -○:LDP man-pages:3.32:2010/08/29:mq_getsetattr:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/10/04:mq_notify:2:mq_notify:3: -@:LDP man-pages:3.32:2009/02/20:mq_open:2:mq_open:3: -@:LDP man-pages:3.32:2010/09/20:mq_timedreceive:2:mq_receive:3: -@:LDP man-pages:3.32:2010/09/20:mq_timedsend:2:mq_send:3: -@:LDP man-pages:3.32:2010/08/29:mq_unlink:2:mq_unlink:3: -○:LDP man-pages:3.32:2010/06/10:mremap:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/08/06:msgctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2004/05/27:msgget:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/04/23:msgop:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/04/23:msgrcv:2:msgop:2: -@:LDP man-pages:3.32:2008/04/23:msgsnd:2:msgop:2: -○:LDP man-pages:3.32:2008/04/22:msync:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/10/30:munlock:2:mlock:2: -@:LDP man-pages:3.32:2010/10/30:munlockall:2:mlock:2: -@:LDP man-pages:3.32:2010/06/20:munmap:2:mmap:2: -○:LDP man-pages:3.32:2009/01/19:nanosleep:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:1997/07/16:nfsservctl:2:1997/08/30::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2007/07/26:nice:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/12/03:oldfstat:2:stat:2: -@:LDP man-pages:3.32:2010/12/03:oldlstat:2:stat:2: -@:LDP man-pages:3.32:2008/12/03:oldolduname:2:uname:2: -@:LDP man-pages:3.32:2010/12/03:oldstat:2:stat:2: -@:LDP man-pages:3.32:2008/12/03:olduname:2:uname:2: -☆:LDP man-pages:3.31=>3.32:2010/11/15:open:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/12/13:openat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:1995/11/29:outb:2:2005/10/30::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:1995/11/29:outb_p:2:outb:2: -@:LDP man-pages:3.32:1995/11/29:outl:2:outb:2: -@:LDP man-pages:3.32:1995/11/29:outl_p:2:outb:2: -@:LDP man-pages:3.32:1995/11/29:outsb:2:outb:2: -@:LDP man-pages:3.32:1995/11/29:outsl:2:outb:2: -@:LDP man-pages:3.32:1995/11/29:outsw:2:outb:2: -@:LDP man-pages:3.32:1995/11/29:outw:2:outb:2: -@:LDP man-pages:3.32:1995/11/29:outw_p:2:outb:2: -@:LDP man-pages:3.32:2009/12/05:path_resolution:2:path_resolution:7: -○:LDP man-pages:3.32:2008/10/06:pause:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki: -@:LDP man-pages:3.32:2003/07/14:pciconfig_iobase:2:pciconfig_read:2: -○:LDP man-pages:3.32:2003/07/14:pciconfig_read:2:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2003/07/14:pciconfig_write:2:pciconfig_read:2: -○:LDP man-pages:3.32:2003/01/01:personality:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2010/09/10:pipe:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/10:pipe2:2:pipe:2: -○:LDP man-pages:3.32:2007/06/01:pivot_root:2:2000/06/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2010/09/20:poll:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.32:2010/10/09:posix_fadvise:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/09/20:ppoll:2:poll:2: -☆:LDP man-pages:3.24=>3.32:2010/05/13:prctl:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.31=>3.32:2010/11/21:pread:2:1999/06/25::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -@:LDP man-pages:3.32:2010/11/21:pread64:2:pread:2: -@:LDP man-pages:3.32:2010/11/17:preadv:2:readv:2: -@:LDP man-pages:3.32:2010/12/03:prlimit:2:getrlimit:2: -@:LDP man-pages:3.32:2007/07/05:prof:2:unimplemented:2: -@:LDP man-pages:3.32:2010/08/31:pselect:2:select:2: -@:LDP man-pages:3.32:2010/08/31:pselect6:2:select:2: -○:LDP man-pages:3.32:2009/03/30:ptrace:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/07/05:putpmsg:2:unimplemented:2: -@:LDP man-pages:3.32:2010/11/21:pwrite:2:pread:2: -@:LDP man-pages:3.32:2010/11/21:pwrite64:2:pwrite:2: -@:LDP man-pages:3.32:2010/11/17:pwritev:2:readv:2: -○:LDP man-pages:3.32:0000/00/00:query_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.32:2010/06/16:quotactl:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2009/02/23:read:2:2005/10/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/10:readahead:2:2005/02/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/10/02:readdir:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2010/09/20:readlink:2:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/12/13:readlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.31=>3.32:2010/11/17:readv:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.29=>3.32:2010/10/31:reboot:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2010/08/29:recv:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/08/29:recvfrom:2:recv:2: -@:LDP man-pages:3.32:2010/08/29:recvmsg:2:recv:2: -○:LDP man-pages:3.32:2008/04/22:remap_file_pages:2:2005/10/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2001/12/01:removexattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/03/30:rename:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/12/13:renameat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -×:LDP man-pages:3.32:2010/02/25:request_key:2::::: -○:LDP man-pages:3.32:2008/05/08:rmdir:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/06/16:rt_sigaction:2:sigaction:2: -@:LDP man-pages:3.32:2008/10/04:rt_sigpending:2:sigpending:2: -@:LDP man-pages:3.32:2008/10/17:rt_sigprocmask:2:sigprocmask:2: -@:LDP man-pages:3.32:2007/07/26:rt_sigqueueinfo:2:sigqueue:2: -@:LDP man-pages:3.32:2008/06/26:rt_sigreturn:2:sigreturn:2: -@:LDP man-pages:3.32:2005/09/15:rt_sigsuspend:2:sigsuspend:2: -@:LDP man-pages:3.32:2008/10/04:rt_sigtimedwait:2:sigtimedwait:2: -@:LDP man-pages:3.32:2010/09/20:sbrk:2:brk:2: -○:LDP man-pages:3.32:2006/03/23:sched_get_priority_max:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2006/03/23:sched_get_priority_min:2:sched_get_priority_max:2: -@:LDP man-pages:3.32:2010/11/06:sched_getaffinity:2:sched_setaffinity:2: -@:LDP man-pages:3.32:2006/03/23:sched_getparam:2:sched_setparam:2: -@:LDP man-pages:3.32:2010/10/04:sched_getscheduler:2:sched_setscheduler:2: -○:LDP man-pages:3.32:2007/04/06:sched_rr_get_interval:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/11/06:sched_setaffinity:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2006/03/23:sched_setparam:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.32:2010/10/04:sched_setscheduler:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/10/18:sched_yield:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -@:LDP man-pages:3.32:2007/07/05:security:2:unimplemented:2: -○:LDP man-pages:3.32:2010/08/31:select:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/06/10:select_tut:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/09/27:semctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2004/05/27:semget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/10/04:semop:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/10/04:semtimedop:2:semop:2: -○:LDP man-pages:3.32:2010/08/29:send:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.31=>3.32:2010/12/03:sendfile:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/12/03:sendfile64:2:sendfile:2: -@:LDP man-pages:3.32:2010/08/29:sendmsg:2:send:2: -@:LDP man-pages:3.32:2010/08/29:sendto:2:send:2: -○:LDP man-pages:3.32:2008/08/15:set_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/11/27:set_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2004/09/10:set_tid_address:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2009/03/15:setcontext:2:getcontext:2: -@:LDP man-pages:3.32:2009/09/27:setdomainname:2:getdomainname:2: -@:LDP man-pages:3.32:2009/10/17:setegid:2:seteuid:2: -○:LDP man-pages:3.32:2009/10/17:seteuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.31=>3.32:2010/11/22:setfsgid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/22:setfsgid32:2:setfsgid:2: -☆:LDP man-pages:3.31=>3.32:2010/11/22:setfsuid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/22:setfsuid32:2:setfsuid:2: -☆:LDP man-pages:3.31=>3.32:2010/11/22:setgid:2:2003/02/14::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/11/22:setgid32:2:setgid:2: -@:LDP man-pages:3.32:2010/11/22:setgroups:2:getgroups:2: -@:LDP man-pages:3.32:2010/11/22:setgroups32:2:setgroups:2: -@:LDP man-pages:3.32:2010/09/20:sethostid:2:gethostid:3: -@:LDP man-pages:3.32:2010/09/26:sethostname:2:gethostname:2: -@:LDP man-pages:3.32:2009/03/15:setitimer:2:getitimer:2: -○:LDP man-pages:3.32:2010/09/26:setpgid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/26:setpgrp:2:setpgid:2: -@:LDP man-pages:3.32:2008/05/29:setpriority:2:getpriority:2: -@:LDP man-pages:3.32:2010/11/22:setregid:2:setreuid:2: -@:LDP man-pages:3.32:2010/11/22:setregid32:2:setregid:2: -@:LDP man-pages:3.32:2010/11/22:setresgid:2:setresuid:2: -@:LDP man-pages:3.32:2010/11/22:setresgid32:2:setresgid:2: -☆:LDP man-pages:3.31=>3.32:2010/11/22:setresuid:2:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/22:setresuid32:2:setresuid:2: -☆:LDP man-pages:3.31=>3.32:2010/11/22:setreuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/22:setreuid32:2:setreuid:2: -@:LDP man-pages:3.32:2010/12/03:setrlimit:2:getrlimit:2: -○:LDP man-pages:3.32:2008/12/03:setsid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2008/12/03:setsockopt:2:getsockopt:2: -@:LDP man-pages:3.32:2009/03/25:settimeofday:2:gettimeofday:2: -☆:LDP man-pages:3.31=>3.32:2010/11/22:setuid:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/11/22:setuid32:2:setuid:2: -○:LDP man-pages:3.32:2008/12/03:setup:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2001/12/31:setxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/07/05:sgetmask:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/06/03:shmat:2:shmop:2: -○:LDP man-pages:3.32:2008/08/07:shmctl:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/06/03:shmdt:2:shmop:2: -○:LDP man-pages:3.32:2006/05/02:shmget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/06/03:shmop:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/12/03:shutdown:2:2001/11/09::argrath@ub32.org:Kentaro Shirakata: -☆:LDP man-pages:3.24=>3.32:2010/06/16:sigaction:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/26:sigaltstack:2:2006/01/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/07/11:signal:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/01/13:signalfd:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2009/01/13:signalfd4:2:signalfd:2: -○:LDP man-pages:3.32:2008/10/04:sigpending:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/10/17:sigprocmask:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.31=>3.32:2007/07/26:sigqueue:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/06/26:sigreturn:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2005/09/15:sigsuspend:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/10/04:sigtimedwait:2:sigwaitinfo:2: -○:LDP man-pages:3.32:2008/10/04:sigwaitinfo:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/01/19:socket:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/06/28:socketcall:2:1997/03/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2008/10/11:socketpair:2:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/09/15:splice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:2.67=>3.32:2007/12/20:spu_create:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/11/25:spu_run:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/07/05:ssetmask:2:sgetmask:2: -☆:LDP man-pages:3.25=>3.32:2010/12/03:stat:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/12/03:stat64:2:stat:2: -☆:LDP man-pages:3.31=>3.32:2010/11/21:statfs:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/21:statfs64:2:statfs:2: -@:LDP man-pages:3.32:2003/08/22:statvfs:2:statvfs:3: -○:LDP man-pages:3.32:2010/02/25:stime:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2007/07/05:stty:2:unimplemented:2: -×:LDP man-pages:3.32:2010/10/30:subpage_prot:2::::: -@:LDP man-pages:3.32:2010/11/15:swapoff:2:swapon:2: -☆:LDP man-pages:3.31=>3.32:2010/11/15:swapon:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2010/09/20:symlink:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2009/12/13:symlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2010/09/20:sync:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata: -☆:LDP man-pages:3.24=>3.32:2010/10/09:sync_file_range:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/10/09:sync_file_range2:2:sync_file_range:2: -○:LDP man-pages:3.32:2007/07/26:syscall:2:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.32:2010/11/06:syscalls:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/11/20:sysctl:2:1999/12/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2010/06/27:sysfs:2:2001/06/02::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.32:2007/11/15:sysinfo:2:2000/09/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2008/06/20:syslog:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/09/15:tee:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/10/01:tgkill:2:tkill:2: -○:LDP man-pages:3.32:2010/02/25:time:2:1999/07/27::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -×:LDP man-pages:3.32:2010/09/27:timer_create:2::::: -×:LDP man-pages:3.32:2009/02/20:timer_delete:2::::: -×:LDP man-pages:3.32:2009/02/20:timer_getoverrun:2::::: -※:LDP man-pages:3.32:2009/02/20:timer_gettime:2:timer_settime:2: -×:LDP man-pages:3.32:2009/02/20:timer_settime:2::::: -○:LDP man-pages:3.32:2009/03/10:timerfd_create:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2009/03/10:timerfd_gettime:2:timerfd_create:2: -@:LDP man-pages:3.32:2009/03/10:timerfd_settime:2:timerfd_create:2: -○:LDP man-pages:3.32:2008/06/25:times:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/10/01:tkill:2:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.31=>3.32:2010/11/21:truncate:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/21:truncate64:2:truncate:2: -@:LDP man-pages:3.32:2007/07/05:tuxcall:2:unimplemented:2: -@:LDP man-pages:3.32:2010/12/03:ugetrlimit:2:getrlimit:2: -○:LDP man-pages:3.32:2008/01/09:umask:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.32:2010/06/19:umount:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/06/19:umount2:2:umount:2: -○:LDP man-pages:3.32:2008/12/03:uname:2:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.32:2007/07/05:unimplemented:2:2003/03/06::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2004/06/23:unlink:2:2006/04/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/12/13:unlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.29=>3.32:2010/10/30:unshare:2:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2005/01/09:uselib:2:2005/04/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2003/08/04:ustat:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2008/08/06:utime:2:2006/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2009/12/13:utimensat:2::::: -@:LDP man-pages:3.32:2008/08/06:utimes:2:utime:2: -○:LDP man-pages:3.32:2010/09/20:vfork:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/07/26:vhangup:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2009/02/20:vm86:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2009/02/20:vm86old:2:vm86:2: -○:LDP man-pages:3.32:2009/09/15:vmsplice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/07/05:vserver:2:unimplemented:2: -○:LDP man-pages:3.32:2010/09/26:wait:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:wait3:2:wait4:2: -○:LDP man-pages:3.32:2010/09/20:wait4:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/26:waitid:2:wait:2: -@:LDP man-pages:3.32:2010/09/26:waitpid:2:wait:2: -○:LDP man-pages:3.32:2010/08/29:write:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/17:writev:2:readv:2: -@:LDP man-pages:3.32:2008/11/20:CMSG_ALIGN:3:cmsg:3: -@:LDP man-pages:3.32:2008/11/20:CMSG_FIRSTHDR:3:cmsg:3: -@:LDP man-pages:3.32:2008/11/20:CMSG_NXTHDR:3:cmsg:3: -@:LDP man-pages:3.32:2008/11/20:CMSG_SPACE:3:cmsg:3: -※:LDP man-pages:3.32:2010/09/10:CPU_ALLOC:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_ALLOC_SIZE:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_AND:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_AND_S:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_CLR:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_CLR_S:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_COUNT:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_COUNT_S:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_EQUAL:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_EQUAL_S:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_FREE:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_ISSET:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_ISSET_S:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_OR:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_OR_S:3:CPU_SET:3: -×:LDP man-pages:3.32:2010/09/10:CPU_SET:3::::: -※:LDP man-pages:3.32:2010/09/10:CPU_SET_S:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_XOR:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_XOR_S:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_ZERO:3:CPU_SET:3: -※:LDP man-pages:3.32:2010/09/10:CPU_ZERO_S:3:CPU_SET:3: -@:LDP man-pages:3.32:2010/08/31:FD_CLR:3:select:2: -@:LDP man-pages:3.32:2010/08/31:FD_ISSET:3:select:2: -@:LDP man-pages:3.32:2010/08/31:FD_SET:3:select:2: -@:LDP man-pages:3.32:2010/08/31:FD_ZERO:3:select:2: -@:LDP man-pages:3.32:2007/07/26:HUGE_VAL:3:INFINITY:3: -@:LDP man-pages:3.32:2007/07/26:HUGE_VALF:3:INFINITY:3: -@:LDP man-pages:3.32:2007/07/26:HUGE_VALL:3:INFINITY:3: -○:LDP man-pages:3.32:2007/07/26:INFINITY:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:1999/07/04:MB_CUR_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi: -○:LDP man-pages:3.32:1999/07/04:MB_LEN_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi: -@:LDP man-pages:3.32:2007/07/26:NAN:3:INFINITY:3: -@:LDP man-pages:3.32:2001/12/16:__fbufsize:3:stdio_ext:3: -@:LDP man-pages:3.32:2001/12/16:__flbf:3:stdio_ext:3: -@:LDP man-pages:3.32:2001/12/16:__fpending:3:stdio_ext:3: -@:LDP man-pages:3.32:2001/12/15:__fpurge:3:fpurge:3: -@:LDP man-pages:3.32:2001/12/16:__freadable:3:stdio_ext:3: -@:LDP man-pages:3.32:2001/12/16:__freading:3:stdio_ext:3: -@:LDP man-pages:3.32:2001/12/16:__fsetlocking:3:stdio_ext:3: -@:LDP man-pages:3.32:2001/12/16:__fwritable:3:stdio_ext:3: -@:LDP man-pages:3.32:2001/12/16:__fwriting:3:stdio_ext:3: -@:LDP man-pages:3.32:2010/10/13:__malloc_hook:3:malloc_hook:3: -○:LDP man-pages:3.32:1997/03/08:__setfpucw:3:2000/09/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: -@:LDP man-pages:3.32:2001/12/16:_flushlbf:3:stdio_ext:3: -○:LDP man-pages:3.32:2010/09/20:a64l:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2007/12/15:abort:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -○:LDP man-pages:3.32:2010/09/20:abs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2010/09/20:acos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:acosf:3:acos:3: -○:LDP man-pages:3.32:2010/09/20:acosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:acoshf:3:acosh:3: -@:LDP man-pages:3.32:2010/09/20:acoshl:3:acosh:3: -@:LDP man-pages:3.32:2010/09/20:acosl:3:acos:3: -@:LDP man-pages:3.32:2009/09/15:addmntent:3:getmntent:3: -○:LDP man-pages:3.32:2008/06/14:addseverity:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2008/06/22:adjtime:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.25=>3.32:2010/10/03:aio_cancel:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.25=>3.32:2010/10/03:aio_error:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.25=>3.32:2010/10/02:aio_fsync:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -×:LDP man-pages:3.32:2010/10/06:aio_init:3::::: -☆:LDP man-pages:3.25=>3.32:2010/10/03:aio_read:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.25=>3.32:2010/10/03:aio_return:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.25=>3.32:2010/10/02:aio_suspend:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.25=>3.32:2010/10/02:aio_write:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2008/01/24:alloca:3:2002/09/19::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2009/02/10:alphasort:3:scandir:3: -@:LDP man-pages:3.32:2007/05/18:argz:3:argz_add:3: -○:LDP man-pages:3.32:2007/05/18:argz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/05/18:argz_add_sep:3:argz_add:3: -@:LDP man-pages:3.32:2007/05/18:argz_append:3:argz_add:3: -@:LDP man-pages:3.32:2007/05/18:argz_count:3:argz_add:3: -@:LDP man-pages:3.32:2007/05/18:argz_create:3:argz_add:3: -@:LDP man-pages:3.32:2007/05/18:argz_create_sep:3:argz_add:3: -@:LDP man-pages:3.32:2007/05/18:argz_delete:3:argz_add:3: -@:LDP man-pages:3.32:2007/05/18:argz_extract:3:argz_add:3: -@:LDP man-pages:3.32:2007/05/18:argz_insert:3:argz_add:3: -@:LDP man-pages:3.32:2007/05/18:argz_next:3:argz_add:3: -@:LDP man-pages:3.32:2007/05/18:argz_replace:3:argz_add:3: -@:LDP man-pages:3.32:2007/05/18:argz_stringify:3:argz_add:3: -@:LDP man-pages:3.32:2010/02/25:asctime:3:ctime:3: -@:LDP man-pages:3.32:2010/02/25:asctime_r:3:ctime:3: -○:LDP man-pages:3.32:2010/09/20:asin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:asinf:3:asin:3: -○:LDP man-pages:3.32:2010/09/20:asinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:asinhf:3:asinh:3: -@:LDP man-pages:3.32:2010/09/20:asinhl:3:asinh:3: -@:LDP man-pages:3.32:2010/09/20:asinl:3:asin:3: -○:LDP man-pages:3.32:2001/12/18:asprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2002/08/25:assert:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2002/08/25:assert_perror:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:atan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:atan2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:atan2f:3:atan2:3: -@:LDP man-pages:3.32:2010/09/20:atan2l:3:atan2:3: -@:LDP man-pages:3.32:2010/09/20:atanf:3:atan:3: -○:LDP man-pages:3.32:2010/09/11:atanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/11:atanhf:3:atanh:3: -@:LDP man-pages:3.32:2010/09/11:atanhl:3:atanh:3: -@:LDP man-pages:3.32:2010/09/20:atanl:3:atan:3: -○:LDP man-pages:3.32:2008/12/05:atexit:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:1993/03/29:atof:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -○:LDP man-pages:3.32:2010/09/20:atoi:3:2001/02/09::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/09/20:atol:3:atoi:3: -@:LDP man-pages:3.32:2010/09/20:atoll:3:atoi:3: -@:LDP man-pages:3.32:2010/09/20:atoq:3:atoi:3: -@:LDP man-pages:3.32:2008/07/17:auth_destroy:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:authnone_create:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:authunix_create:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:authunix_create_default:3:rpc:3: -○:LDP man-pages:3.32:2008/06/14:backtrace:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/06/14:backtrace_symbols:3:backtrace:3: -@:LDP man-pages:3.32:2008/06/14:backtrace_symbols_fd:3:backtrace:3: -○:LDP man-pages:3.32:2009/03/30:basename:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/08/06:bcmp:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2009/03/15:bcopy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -※:LDP man-pages:3.32:2010/09/10:be16toh:3:endian:3: -※:LDP man-pages:3.32:2010/09/10:be32toh:3:endian:3: -※:LDP man-pages:3.32:2010/09/10:be64toh:3:endian:3: -○:LDP man-pages:3.32:2008/12/03:bindresvport:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/03/15:bsd_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2003/11/01:bsearch:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2004/12/26:bstring:3:2003/11/13::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2009/02/04:btowc:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi: -○:LDP man-pages:3.32:1994/08/18:btree:3:1999/08/16::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2009/01/15:byteorder:3:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2002/12/31:bzero:3:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/12/26:cabs:3:2003/07/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:cabsf:3:cabs:3: -@:LDP man-pages:3.32:2007/12/26:cabsl:3:cabs:3: -○:LDP man-pages:3.32:2007/12/26:cacos:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:cacosf:3:cacos:3: -○:LDP man-pages:3.32:2008/08/11:cacosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/11:cacoshf:3:cacosh:3: -@:LDP man-pages:3.32:2008/08/11:cacoshl:3:cacosh:3: -@:LDP man-pages:3.32:2007/12/26:cacosl:3:cacos:3: -@:LDP man-pages:3.32:2010/10/18:calloc:3:malloc:3: -@:LDP man-pages:3.32:2008/07/17:callrpc:3:rpc:3: -○:LDP man-pages:3.32:2005/07/14:canonicalize_file_name:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/12/26:carg:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:cargf:3:carg:3: -@:LDP man-pages:3.32:2007/12/26:cargl:3:carg:3: -○:LDP man-pages:3.32:2007/12/26:casin:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:casinf:3:casin:3: -○:LDP man-pages:3.32:2007/12/26:casinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:casinhf:3:casinh:3: -@:LDP man-pages:3.32:2007/12/26:casinhl:3:casinh:3: -@:LDP man-pages:3.32:2007/12/26:casinl:3:casin:3: -○:LDP man-pages:3.32:2007/12/26:catan:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:catanf:3:catan:3: -○:LDP man-pages:3.32:2007/12/26:catanh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:catanhf:3:catanh:3: -@:LDP man-pages:3.32:2007/12/26:catanhl:3:catanh:3: -@:LDP man-pages:3.32:2007/12/26:catanl:3:catan:3: -@:LDP man-pages:3.32:2001/12/14:catclose:3:catopen:3: -○:LDP man-pages:3.32:1998/08/09:catgets:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2001/12/14:catopen:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: -@:LDP man-pages:3.32:2007/05/18:cbc_crypt:3:des_crypt:3: -○:LDP man-pages:3.32:2010/09/20:cbrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:cbrtf:3:cbrt:3: -@:LDP man-pages:3.32:2010/09/20:cbrtl:3:cbrt:3: -○:LDP man-pages:3.32:2007/12/26:ccos:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:ccosf:3:ccos:3: -○:LDP man-pages:3.32:2007/12/26:ccosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:ccoshf:3:ccosh:3: -@:LDP man-pages:3.32:2007/12/26:ccoshl:3:ccosh:3: -@:LDP man-pages:3.32:2007/12/26:ccosl:3:ccos:3: -○:LDP man-pages:3.32:2010/09/20:ceil:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:ceilf:3:ceil:3: -@:LDP man-pages:3.32:2010/09/20:ceill:3:ceil:3: -○:LDP man-pages:3.32:2010/09/12:cerf:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/12:cerfc:3:cerf:3: -@:LDP man-pages:3.32:2010/09/12:cerfcf:3:cerf:3: -@:LDP man-pages:3.32:2010/09/12:cerfcl:3:cerf:3: -@:LDP man-pages:3.32:2010/09/12:cerff:3:cerf:3: -@:LDP man-pages:3.32:2010/09/12:cerfl:3:cerf:3: -○:LDP man-pages:3.32:2007/12/26:cexp:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2002/07/28:cexp2:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2002/07/28:cexp2f:3:cexp2:3: -@:LDP man-pages:3.32:2002/07/28:cexp2l:3:cexp2:3: -@:LDP man-pages:3.32:2007/12/26:cexpf:3:cexp:3: -@:LDP man-pages:3.32:2007/12/26:cexpl:3:cexp:3: -@:LDP man-pages:3.32:2010/06/20:cfgetispeed:3:termios:3: -@:LDP man-pages:3.32:2010/06/20:cfgetospeed:3:termios:3: -@:LDP man-pages:3.32:2010/06/20:cfmakeraw:3:termios:3: -○:LDP man-pages:3.32:2007/07/26:cfree:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/06/20:cfsetispeed:3:termios:3: -@:LDP man-pages:3.32:2010/06/20:cfsetospeed:3:termios:3: -@:LDP man-pages:3.32:2010/06/20:cfsetspeed:3:termios:3: -○:LDP man-pages:3.32:2007/12/23:cimag:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/23:cimagf:3:cimag:3: -@:LDP man-pages:3.32:2007/12/23:cimagl:3:cimag:3: -○:LDP man-pages:3.32:2010/10/04:clearenv:3:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO: -@:LDP man-pages:3.32:2008/08/29:clearerr:3:ferror:3: -@:LDP man-pages:3.32:2008/08/29:clearerr_unlocked:3:unlocked_stdio:3: -@:LDP man-pages:3.32:2008/07/17:clnt_broadcast:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clnt_call:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clnt_control:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clnt_create:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clnt_destroy:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clnt_freeres:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clnt_geterr:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clnt_pcreateerror:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clnt_perrno:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clnt_perror:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clnt_spcreateerror:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clnt_sperrno:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clnt_sperror:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clntraw_create:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clnttcp_create:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clntudp_bufcreate:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:clntudp_create:3:rpc:3: -○:LDP man-pages:3.32:2008/08/28:clock:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2010/09/10:clock_getcpuclockid:3::::: -@:LDP man-pages:3.32:2010/02/03:clock_getres:3:clock_getres:2: -@:LDP man-pages:3.32:2010/02/03:clock_gettime:3:clock_getres:2: -@:LDP man-pages:3.32:2010/02/03:clock_settime:3:clock_getres:2: -○:LDP man-pages:3.32:2007/12/26:clog:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/08/11:clog10:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/11:clog10f:3:clog10:3: -@:LDP man-pages:3.32:2008/08/11:clog10l:3:clog10:3: -○:LDP man-pages:3.32:2002/07/28:clog2:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2002/07/28:clog2f:3:clog2:3: -@:LDP man-pages:3.32:2002/07/28:clog2l:3:clog2:3: -@:LDP man-pages:3.32:2007/12/26:clogf:3:clog:3: -@:LDP man-pages:3.32:2007/12/26:clogl:3:clog:3: -○:LDP man-pages:3.32:2008/09/23:closedir:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2008/11/12:closelog:3:syslog:3: -○:LDP man-pages:3.32:2008/11/20:cmsg:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2010/02/03:confstr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/12/26:conj:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:conjf:3:conj:3: -@:LDP man-pages:3.32:2007/12/26:conjl:3:conj:3: -○:LDP man-pages:3.32:2010/09/20:copysign:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:copysignf:3:copysign:3: -@:LDP man-pages:3.32:2010/09/20:copysignl:3:copysign:3: -○:LDP man-pages:3.32:2010/09/11:cos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/11:cosf:3:cos:3: -○:LDP man-pages:3.32:2010/09/20:cosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:coshf:3:cosh:3: -@:LDP man-pages:3.32:2010/09/20:coshl:3:cosh:3: -@:LDP man-pages:3.32:2010/09/11:cosl:3:cos:3: -○:LDP man-pages:3.32:2002/07/28:cpow:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2002/07/28:cpowf:3:cpow:3: -@:LDP man-pages:3.32:2002/07/28:cpowl:3:cpow:3: -○:LDP man-pages:3.32:2010/06/10:cproj:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/06/10:cprojf:3:cproj:3: -@:LDP man-pages:3.32:2010/06/10:cprojl:3:cproj:3: -○:LDP man-pages:3.32:2007/12/26:creal:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:crealf:3:creal:3: -@:LDP man-pages:3.32:2007/12/26:creall:3:creal:3: -○:LDP man-pages:3.32:2010/06/20:crypt:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/06/20:crypt_r:3:crypt:3: -○:LDP man-pages:3.32:2007/12/26:csin:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:csinf:3:csin:3: -○:LDP man-pages:3.32:2007/12/26:csinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:csinhf:3:csinh:3: -@:LDP man-pages:3.32:2007/12/26:csinhl:3:csinh:3: -@:LDP man-pages:3.32:2007/12/26:csinl:3:csin:3: -○:LDP man-pages:3.32:2008/08/11:csqrt:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/11:csqrtf:3:csqrt:3: -@:LDP man-pages:3.32:2008/08/11:csqrtl:3:csqrt:3: -○:LDP man-pages:3.32:2007/12/26:ctan:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:ctanf:3:ctan:3: -○:LDP man-pages:3.32:2007/12/26:ctanh:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/26:ctanhf:3:ctanh:3: -@:LDP man-pages:3.32:2007/12/26:ctanhl:3:ctanh:3: -@:LDP man-pages:3.32:2007/12/26:ctanl:3:ctan:3: -○:LDP man-pages:3.32:2007/07/26:ctermid:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki: -○:LDP man-pages:3.32:2010/02/25:ctime:3:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/02/25:ctime_r:3:ctime:3: -@:LDP man-pages:3.32:2008/06/29:cuserid:3:getlogin:3: -○:LDP man-pages:3.32:2009/12/05:daemon:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/02/25:daylight:3:tzset:3: -@:LDP man-pages:3.32:1994/01/02:db:3:dbopen:3: -○:LDP man-pages:3.32:1994/01/02:dbopen:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2007/05/18:des_crypt:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2007/05/18:des_setparity:3:des_crypt:3: -○:LDP man-pages:3.32:2010/02/25:difftime:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/26:dirfd:3:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2009/03/30:dirname:3:basename:3: -○:LDP man-pages:3.32:2010/09/20:div:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2007/05/18:dl_iterate_phdr:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2008/12/06:dladdr:3:dlopen:3: -@:LDP man-pages:3.32:2008/12/06:dlclose:3:dlopen:3: -@:LDP man-pages:3.32:2008/12/06:dlerror:3:dlopen:3: -○:LDP man-pages:3.32:2008/12/06:dlopen:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/12/06:dlsym:3:dlopen:3: -@:LDP man-pages:3.32:2008/12/06:dlvsym:3:dlopen:3: -@:LDP man-pages:3.32:2010/06/17:dn_comp:3:resolver:3: -@:LDP man-pages:3.32:2010/06/17:dn_expand:3:resolver:3: -○:LDP man-pages:3.32:2010/09/15:dprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2007/07/26:drand48:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: -○:LDP man-pages:3.32:2007/07/26:drand48_r:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/09/20:drem:3:remainder:3: -@:LDP man-pages:3.32:2010/09/20:dremf:3:remainder:3: -@:LDP man-pages:3.32:2010/09/20:dreml:3:remainder:3: -○:LDP man-pages:3.32:2010/09/22:dysize:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: -@:LDP man-pages:3.32:2010/11/01:eaccess:3:euidaccess:3: -@:LDP man-pages:3.32:2007/05/18:ecb_crypt:3:des_crypt:3: -○:LDP man-pages:3.32:2010/09/20:ecvt:3:2009/05/14::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2007/07/26:ecvt_r:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/07/17:edata:3:end:3: -○:LDP man-pages:3.32:2003/04/04:encrypt:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2003/04/04:encrypt_r:3:encrypt:3: -○:LDP man-pages:3.32:2008/07/17:end:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2003/09/09:endaliasent:3:setaliasent:3: -@:LDP man-pages:3.32:2002/02/28:endfsent:3:getfsent:3: -@:LDP man-pages:3.32:2010/10/21:endgrent:3:getgrent:3: -@:LDP man-pages:3.32:2010/10/04:endhostent:3:gethostbyname:3: -×:LDP man-pages:3.32:2010/09/10:endian:3::::: -@:LDP man-pages:3.32:2009/09/15:endmntent:3:getmntent:3: -@:LDP man-pages:3.32:2008/08/19:endnetent:3:getnetent:3: -@:LDP man-pages:3.32:2007/07/26:endnetgrent:3:setnetgrent:3: -@:LDP man-pages:3.32:2008/08/19:endprotoent:3:getprotoent:3: -@:LDP man-pages:3.32:2010/10/21:endpwent:3:getpwent:3: -@:LDP man-pages:3.32:2008/08/19:endrpcent:3:getrpcent:3: -@:LDP man-pages:3.32:2008/08/19:endservent:3:getservent:3: -@:LDP man-pages:3.32:2010/02/25:endspent:3:getspnam:3: -@:LDP man-pages:3.32:2002/07/18:endttyent:3:getttyent:3: -@:LDP man-pages:3.32:2007/07/26:endusershell:3:getusershell:3: -@:LDP man-pages:3.32:2008/06/29:endutent:3:getutent:3: -@:LDP man-pages:3.32:2008/06/29:endutxent:3:getutent:3: -@:LDP man-pages:3.32:2007/05/18:envz:3:envz_add:3: -○:LDP man-pages:3.32:2007/05/18:envz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/05/18:envz_entry:3:envz_add:3: -@:LDP man-pages:3.32:2007/05/18:envz_get:3:envz_add:3: -@:LDP man-pages:3.32:2007/05/18:envz_merge:3:envz_add:3: -@:LDP man-pages:3.32:2007/05/18:envz_remove:3:envz_add:3: -@:LDP man-pages:3.32:2007/05/18:envz_strip:3:envz_add:3: -@:LDP man-pages:3.32:2007/07/26:erand48:3:drand48:3: -@:LDP man-pages:3.32:2007/07/26:erand48_r:3:drand48_r:3: -○:LDP man-pages:3.32:2010/09/20:erf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:erfc:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:erfcf:3:erfc:3: -@:LDP man-pages:3.32:2010/09/20:erfcl:3:erfc:3: -@:LDP man-pages:3.32:2010/09/20:erff:3:erf:3: -@:LDP man-pages:3.32:2010/09/20:erfl:3:erf:3: -○:LDP man-pages:3.32:2007/12/28:err:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/07/09:errno:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/08/29:error:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/08/29:error_at_line:3:error:3: -@:LDP man-pages:3.32:2010/08/29:error_message_count:3:error:3: -@:LDP man-pages:3.32:2010/08/29:error_one_per_line:3:error:3: -@:LDP man-pages:3.32:2010/08/29:error_print_progname:3:error:3: -@:LDP man-pages:3.32:2007/12/28:errx:3:err:3: -@:LDP man-pages:3.32:2008/07/17:etext:3:end:3: -○:LDP man-pages:3.32:2002/07/20:ether_aton:3:2002/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2002/07/20:ether_aton_r:3:ether_aton:3: -@:LDP man-pages:3.32:2002/07/20:ether_hostton:3:ether_aton:3: -@:LDP man-pages:3.32:2002/07/20:ether_line:3:ether_aton:3: -@:LDP man-pages:3.32:2002/07/20:ether_ntoa:3:ether_aton:3: -@:LDP man-pages:3.32:2002/07/20:ether_ntoa_r:3:ether_aton:3: -@:LDP man-pages:3.32:2002/07/20:ether_ntohost:3:ether_aton:3: -☆:LDP man-pages:3.29=>3.32:2010/11/01:euidaccess:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/08/30:eventfd_read:3:eventfd:2: -@:LDP man-pages:3.32:2010/08/30:eventfd_write:3:eventfd:2: -○:LDP man-pages:3.32:2010/09/25:exec:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/25:execl:3:exec:3: -@:LDP man-pages:3.32:2010/09/25:execle:3:exec:3: -@:LDP man-pages:3.32:2010/09/25:execlp:3:exec:3: -@:LDP man-pages:3.32:2010/09/25:execv:3:exec:3: -@:LDP man-pages:3.32:2010/09/25:execvp:3:exec:3: -@:LDP man-pages:3.32:2010/09/25:execvpe:3:exec:3: -○:LDP man-pages:3.32:2009/09/20:exit:3:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:exp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/08/11:exp10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/11:exp10f:3:exp10:3: -@:LDP man-pages:3.32:2008/08/11:exp10l:3:exp10:3: -○:LDP man-pages:3.32:2010/09/20:exp2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:exp2f:3:exp2:3: -@:LDP man-pages:3.32:2010/09/20:exp2l:3:exp2:3: -@:LDP man-pages:3.32:2010/09/20:expf:3:exp:3: -@:LDP man-pages:3.32:2010/09/20:expl:3:exp:3: -○:LDP man-pages:3.32:2010/09/12:expm1:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/12:expm1f:3:expm1:3: -@:LDP man-pages:3.32:2010/09/12:expm1l:3:expm1:3: -○:LDP man-pages:3.32:2010/09/20:fabs:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:fabsf:3:fabs:3: -@:LDP man-pages:3.32:2010/09/20:fabsl:3:fabs:3: -○:LDP man-pages:3.32:2009/02/23:fclose:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2006/12/27:fcloseall:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:fcvt:3:ecvt:3: -@:LDP man-pages:3.32:2007/07/26:fcvt_r:3:ecvt_r:3: -○:LDP man-pages:3.32:2010/09/20:fdim:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:fdimf:3:fdim:3: -@:LDP man-pages:3.32:2010/09/20:fdiml:3:fdim:3: -@:LDP man-pages:3.32:2009/02/23:fdopen:3:fopen:3: -@:LDP man-pages:3.32:2010/06/20:fdopendir:3:opendir:3: -@:LDP man-pages:3.32:2010/10/31:feclearexcept:3:fenv:3: -@:LDP man-pages:3.32:2010/10/31:fedisableexcept:3:fenv:3: -@:LDP man-pages:3.32:2010/10/31:feenableexcept:3:fenv:3: -@:LDP man-pages:3.32:2010/10/31:fegetenv:3:fenv:3: -@:LDP man-pages:3.32:2010/10/31:fegetexcept:3:fenv:3: -@:LDP man-pages:3.32:2010/10/31:fegetexceptflag:3:fenv:3: -@:LDP man-pages:3.32:2010/10/31:fegetround:3:fenv:3: -@:LDP man-pages:3.32:2010/10/31:feholdexcept:3:fenv:3: -○:LDP man-pages:3.32:2010/10/31:fenv:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/29:feof:3:ferror:3: -@:LDP man-pages:3.32:2008/08/29:feof_unlocked:3:unlocked_stdio:3: -@:LDP man-pages:3.32:2010/10/31:feraiseexcept:3:fenv:3: -○:LDP man-pages:3.32:2008/08/29:ferror:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2008/08/29:ferror_unlocked:3:unlocked_stdio:3: -@:LDP man-pages:3.32:2010/10/31:fesetenv:3:fenv:3: -@:LDP man-pages:3.32:2010/10/31:fesetexceptflag:3:fenv:3: -@:LDP man-pages:3.32:2010/10/31:fesetround:3:fenv:3: -@:LDP man-pages:3.32:2010/10/31:fetestexcept:3:fenv:3: -@:LDP man-pages:3.32:2010/10/31:feupdateenv:3:fenv:3: -○:LDP man-pages:3.32:2010/09/15:fexecve:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/09/06:fflush:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2008/08/29:fflush_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.32:2010/09/20:ffs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/09/20:ffsl:3:ffs:3: -@:LDP man-pages:3.32:2010/09/20:ffsll:3:ffs:3: -@:LDP man-pages:3.32:2008/08/06:fgetc:3:gets:3: -@:LDP man-pages:3.32:2008/08/29:fgetc_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.32:2008/07/10:fgetgrent:3:1997/12/19::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -@:LDP man-pages:3.32:2010/10/21:fgetgrent_r:3:getgrent_r:3: -@:LDP man-pages:3.32:1993/11/29:fgetpos:3:fseek:3: -○:LDP man-pages:3.32:2008/07/10:fgetpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -@:LDP man-pages:3.32:2010/10/21:fgetpwent_r:3:getpwent_r:3: -@:LDP man-pages:3.32:2008/08/06:fgets:3:gets:3: -@:LDP man-pages:3.32:2008/08/29:fgets_unlocked:3:unlocked_stdio:3: -@:LDP man-pages:3.32:2010/02/25:fgetspent:3:getspnam:3: -@:LDP man-pages:3.32:2010/02/25:fgetspent_r:3:getspnam:3: -○:LDP man-pages:3.32:1999/07/25:fgetwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2008/08/29:fgetwc_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.32:1999/07/25:fgetws:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO: -@:LDP man-pages:3.32:2008/08/29:fgetws_unlocked:3:unlocked_stdio:3: -@:LDP man-pages:3.32:2008/08/29:fileno:3:ferror:3: -@:LDP man-pages:3.32:2008/08/29:fileno_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.32:2008/08/05:finite:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/05:finitef:3:finite:3: -@:LDP man-pages:3.32:2008/08/05:finitel:3:finite:3: -○:LDP man-pages:3.32:2008/08/29:flockfile:3:2001/11/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:floor:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:floorf:3:floor:3: -@:LDP man-pages:3.32:2010/09/20:floorl:3:floor:3: -○:LDP man-pages:3.32:2010/09/20:fma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:fmaf:3:fma:3: -@:LDP man-pages:3.32:2010/09/20:fmal:3:fma:3: -○:LDP man-pages:3.32:2010/09/20:fmax:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:fmaxf:3:fmax:3: -@:LDP man-pages:3.32:2010/09/20:fmaxl:3:fmax:3: -○:LDP man-pages:3.32:2010/09/15:fmemopen:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:fmin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:fminf:3:fmin:3: -@:LDP man-pages:3.32:2010/09/20:fminl:3:fmin:3: -○:LDP man-pages:3.32:2010/09/20:fmod:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:fmodf:3:fmod:3: -@:LDP man-pages:3.32:2010/09/20:fmodl:3:fmod:3: -○:LDP man-pages:3.32:2008/06/14:fmtmsg:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2000/10/15:fnmatch:3:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/02/23:fopen:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2008/12/05:fopencookie:3::::: -@:LDP man-pages:3.32:2010/06/13:forkpty:3:openpty:3: -○:LDP man-pages:3.32:1993/04/04:fpathconf:3:1998/03/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2010/09/20:fpclassify:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:fprintf:3:printf:3: -○:LDP man-pages:3.32:2001/12/15:fpurge:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -@:LDP man-pages:3.32:1993/04/04:fputc:3:puts:3: -@:LDP man-pages:3.32:2008/08/29:fputc_unlocked:3:unlocked_stdio:3: -@:LDP man-pages:3.32:1993/04/04:fputs:3:puts:3: -@:LDP man-pages:3.32:2008/08/29:fputs_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.32:1999/07/25:fputwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2008/08/29:fputwc_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.32:1999/07/25:fputws:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2008/08/29:fputws_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.32:1996/05/17:fread:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2008/08/29:fread_unlocked:3:unlocked_stdio:3: -@:LDP man-pages:3.32:2010/10/18:free:3:malloc:3: -@:LDP man-pages:3.32:2010/09/27:freeaddrinfo:3:getaddrinfo:3: -@:LDP man-pages:3.32:2010/09/04:freehostent:3:getipnodebyname:3: -※:LDP man-pages:3.32:2010/10/06:freeifaddrs:3:getifaddrs:3: -@:LDP man-pages:3.32:2009/02/23:freopen:3:fopen:3: -○:LDP man-pages:3.32:2010/09/20:frexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:frexpf:3:frexp:3: -@:LDP man-pages:3.32:2010/09/20:frexpl:3:frexp:3: -@:LDP man-pages:3.32:2010/09/20:fscanf:3:scanf:3: -○:LDP man-pages:3.32:1993/11/29:fseek:3:1998/04/27::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2001/11/05:fseeko:3:2006/01/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:1993/11/29:fsetpos:3:fseek:3: -@:LDP man-pages:3.32:2003/08/22:fstatvfs:3:statvfs:3: -@:LDP man-pages:3.32:1993/11/29:ftell:3:fseek:3: -@:LDP man-pages:3.32:2001/11/05:ftello:3:fseeko:3: -○:LDP man-pages:3.32:2010/02/25:ftime:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -☆:LDP man-pages:3.31=>3.32:2001/11/28:ftok:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: -@:LDP man-pages:3.32:2008/08/29:ftrylockfile:3:flockfile:3: -○:LDP man-pages:3.32:2007/12/28:fts:3:2000/09/05::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: -@:LDP man-pages:3.32:2007/12/28:fts_children:3:fts:3: -@:LDP man-pages:3.32:2007/12/28:fts_close:3:fts:3: -@:LDP man-pages:3.32:2007/12/28:fts_open:3:fts:3: -@:LDP man-pages:3.32:2007/12/28:fts_read:3:fts:3: -@:LDP man-pages:3.32:2007/12/28:fts_set:3:fts:3: -○:LDP man-pages:3.32:2010/09/20:ftw:3:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/29:funlockfile:3:flockfile:3: -※:LDP man-pages:3.32:2009/12/13:futimens:3:utimensat:2: -○:LDP man-pages:3.32:2008/04/07:futimes:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:fwide:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -@:LDP man-pages:3.32:2010/09/20:fwprintf:3:wprintf:3: -@:LDP man-pages:3.32:1996/05/17:fwrite:3:fread:3: -@:LDP man-pages:3.32:2008/08/29:fwrite_unlocked:3:unlocked_stdio:3: -※:LDP man-pages:3.32:2010/09/27:gai_cancel:3:getaddrinfo_a:3: -※:LDP man-pages:3.32:2010/09/27:gai_error:3:getaddrinfo_a:3: -@:LDP man-pages:3.32:2010/09/27:gai_strerror:3:getaddrinfo:3: -※:LDP man-pages:3.32:2010/09/27:gai_suspend:3:getaddrinfo_a:3: -○:LDP man-pages:3.32:2008/08/05:gamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/05:gammaf:3:gamma:3: -@:LDP man-pages:3.32:2008/08/05:gammal:3:gamma:3: -○:LDP man-pages:3.32:2010/09/20:gcvt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:get_current_dir_name:3:getcwd:3: -@:LDP man-pages:3.32:2008/07/17:get_myaddress:3:rpc:3: -○:LDP man-pages:3.32:2010/09/27:getaddrinfo:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2010/09/27:getaddrinfo_a:3::::: -@:LDP man-pages:3.32:2003/09/09:getaliasbyname:3:setaliasent:3: -@:LDP man-pages:3.32:2003/09/09:getaliasbyname_r:3:setaliasent:3: -@:LDP man-pages:3.32:2003/09/09:getaliasent:3:setaliasent:3: -@:LDP man-pages:3.32:2003/09/09:getaliasent_r:3:setaliasent:3: -@:LDP man-pages:3.32:2008/08/06:getc:3:gets:3: -@:LDP man-pages:3.32:2008/08/29:getc_unlocked:3:unlocked_stdio:3: -@:LDP man-pages:3.32:2008/08/06:getchar:3:gets:3: -@:LDP man-pages:3.32:2008/08/29:getchar_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.32:2010/09/20:getcwd:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2010/09/20:getdate:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:getdate_err:3:getdate:3: -@:LDP man-pages:3.32:2010/09/20:getdate_r:3:getdate:3: -@:LDP man-pages:3.32:2010/06/12:getdelim:3:getline:3: -○:LDP man-pages:3.32:2007/07/26:getdirentries:3:1998/04/30::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2008/03/17:getenv:3:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2002/02/28:getfsent:3:2002/08/07::nakano@apm.seikei.ac.jp:NAKANO Takeo: -@:LDP man-pages:3.32:2002/02/28:getfsfile:3:getfsent:3: -@:LDP man-pages:3.32:2002/02/28:getfsspec:3:getfsent:3: -○:LDP man-pages:3.32:2010/10/21:getgrent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/10/21:getgrent_r:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/10/21:getgrgid:3:getgrnam:3: -@:LDP man-pages:3.32:2010/10/21:getgrgid_r:3:getgrnam:3: -☆:LDP man-pages:3.29=>3.32:2010/10/21:getgrnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/10/21:getgrnam_r:3:getgrnam:3: -○:LDP man-pages:3.32:2008/07/03:getgrouplist:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/10/04:gethostbyaddr:3:gethostbyname:3: -@:LDP man-pages:3.32:2010/10/04:gethostbyaddr_r:3:gethostbyname:3: -○:LDP man-pages:3.32:2010/10/04:gethostbyname:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/10/04:gethostbyname2:3:gethostbyname:3: -@:LDP man-pages:3.32:2010/10/04:gethostbyname2_r:3:gethostbyname:3: -@:LDP man-pages:3.32:2010/10/04:gethostbyname_r:3:gethostbyname:3: -@:LDP man-pages:3.32:2010/10/04:gethostent:3:gethostbyname:3: -@:LDP man-pages:3.32:2010/10/04:gethostent_r:3:gethostbyname:3: -○:LDP man-pages:3.32:2010/09/20:gethostid:3:2009/01/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2010/10/06:getifaddrs:3::::: -@:LDP man-pages:3.32:2010/09/04:getipnodebyaddr:3:getipnodebyname:3: -○:LDP man-pages:3.32:2010/09/04:getipnodebyname:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2010/06/12:getline:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/12/08:getloadavg:3:2002/01/21::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2008/06/29:getlogin:3:2005/03/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/06/29:getlogin_r:3:getlogin:3: -○:LDP man-pages:3.32:2009/09/15:getmntent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2009/09/15:getmntent_r:3:getmntent:3: -○:LDP man-pages:3.32:2009/12/03:getnameinfo:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/19:getnetbyaddr:3:getnetent:3: -※:LDP man-pages:3.32:2010/09/10:getnetbyaddr_r:3:getnetent_r:3: -@:LDP man-pages:3.32:2008/08/19:getnetbyname:3:getnetent:3: -※:LDP man-pages:3.32:2010/09/10:getnetbyname_r:3:getnetent_r:3: -○:LDP man-pages:3.32:2008/08/19:getnetent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2010/09/10:getnetent_r:3::::: -@:LDP man-pages:3.32:2007/07/26:getnetgrent:3:setnetgrent:3: -@:LDP man-pages:3.32:2007/07/26:getnetgrent_r:3:setnetgrent:3: -○:LDP man-pages:3.32:2010/11/01:getopt:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/01:getopt_long:3:getopt:3: -@:LDP man-pages:3.32:2010/11/01:getopt_long_only:3:getopt:3: -○:LDP man-pages:3.32:2010/09/20:getpass:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:Older ver. is in obsolete/ -@:LDP man-pages:3.32:2008/08/19:getprotobyname:3:getprotoent:3: -※:LDP man-pages:3.32:2010/09/10:getprotobyname_r:3:getprotoent_r:3: -@:LDP man-pages:3.32:2008/08/19:getprotobynumber:3:getprotoent:3: -※:LDP man-pages:3.32:2010/09/10:getprotobynumber_r:3:getprotoent_r:3: -○:LDP man-pages:3.32:2008/08/19:getprotoent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2010/09/10:getprotoent_r:3::::: -○:LDP man-pages:3.32:2010/09/10:getpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/10/21:getpw:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2010/10/21:getpwent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/10/21:getpwent_r:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.29=>3.32:2010/10/21:getpwnam:3:2005/10/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/10/21:getpwnam_r:3:getpwnam:3: -@:LDP man-pages:3.32:2010/10/21:getpwuid:3:getpwnam:3: -@:LDP man-pages:3.32:2010/10/21:getpwuid_r:3:getpwnam:3: -@:LDP man-pages:3.32:2008/08/19:getrpcbyname:3:getrpcent:3: -※:LDP man-pages:3.32:2010/09/10:getrpcbyname_r:3:getrpcent_r:3: -@:LDP man-pages:3.32:2008/08/19:getrpcbynumber:3:getrpcent:3: -※:LDP man-pages:3.32:2010/09/10:getrpcbynumber_r:3:getrpcent_r:3: -○:LDP man-pages:3.32:2008/08/19:getrpcent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2010/09/10:getrpcent_r:3::::: -○:LDP man-pages:3.32:1987/10/06:getrpcport:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2008/08/06:gets:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/19:getservbyname:3:getservent:3: -※:LDP man-pages:3.32:2010/09/10:getservbyname_r:3:getservent_r:3: -@:LDP man-pages:3.32:2008/08/19:getservbyport:3:getservent:3: -※:LDP man-pages:3.32:2010/09/10:getservbyport_r:3:getservent_r:3: -○:LDP man-pages:3.32:2008/08/19:getservent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2010/09/10:getservent_r:3::::: -@:LDP man-pages:3.32:2010/02/25:getspent:3:getspnam:3: -@:LDP man-pages:3.32:2010/02/25:getspent_r:3:getspnam:3: -○:LDP man-pages:3.32:2010/02/25:getspnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/02/25:getspnam_r:3:getspnam:3: -○:LDP man-pages:3.32:2010/09/26:getsubopt:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2002/07/18:getttyent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2002/07/18:getttynam:3:getttyent:3: -○:LDP man-pages:3.32:2010/09/10:getumask:3:2003/02/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/07/26:getusershell:3:1998/02/05::ishioka@dad.eec.toshiba.co.jp:ISHIOKA Takashi: -○:LDP man-pages:3.32:2008/06/29:getutent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/06/29:getutent_r:3:getutent:3: -@:LDP man-pages:3.32:2008/06/29:getutid:3:getutent:3: -@:LDP man-pages:3.32:2008/06/29:getutid_r:3:getutent:3: -@:LDP man-pages:3.32:2008/06/29:getutline:3:getutent:3: -@:LDP man-pages:3.32:2008/06/29:getutline_r:3:getutent:3: -×:LDP man-pages:3.32:2010/09/10:getutmp:3::::: -※:LDP man-pages:3.32:2010/09/10:getutmpx:3:getutmp:3: -@:LDP man-pages:3.32:2008/06/29:getutxent:3:getutent:3: -@:LDP man-pages:3.32:2008/06/29:getutxid:3:getutent:3: -@:LDP man-pages:3.32:2008/06/29:getutxline:3:getutent:3: -○:LDP man-pages:3.32:2010/09/26:getw:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:1999/07/25:getwc:3:fgetwc:3: -@:LDP man-pages:3.32:2008/08/29:getwc_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.32:1999/07/25:getwchar:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2008/08/29:getwchar_unlocked:3:unlocked_stdio:3: -@:LDP man-pages:3.32:2010/09/20:getwd:3:getcwd:3: -○:LDP man-pages:3.32:2007/10/10:glob:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2007/10/10:globfree:3:glob:3: -@:LDP man-pages:3.32:2010/02/25:gmtime:3:ctime:3: -@:LDP man-pages:3.32:2010/02/25:gmtime_r:3:ctime:3: -※:LDP man-pages:3.32:2010/09/10:gnu_dev_major:3:makedev:3: -※:LDP man-pages:3.32:2010/09/10:gnu_dev_makedev:3:makedev:3: -※:LDP man-pages:3.32:2010/09/10:gnu_dev_minor:3:makedev:3: -@:LDP man-pages:3.32:2010/09/10:gnu_get_libc_release:3:gnu_get_libc_version:3: -○:LDP man-pages:3.32:2010/09/10:gnu_get_libc_version:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/06/14:grantpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/07/26:gsignal:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/10/04:h_errno:3:gethostbyname:3: -○:LDP man-pages:3.32:1994/08/18:hash:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo: -@:LDP man-pages:3.32:2009/09/15:hasmntopt:3:getmntent:3: -@:LDP man-pages:3.32:2008/10/06:hcreate:3:hsearch:3: -@:LDP man-pages:3.32:2008/10/06:hcreate_r:3:hsearch:3: -@:LDP man-pages:3.32:2008/10/06:hdestroy:3:hsearch:3: -@:LDP man-pages:3.32:2008/10/06:hdestroy_r:3:hsearch:3: -@:LDP man-pages:3.32:2010/10/04:herror:3:gethostbyname:3: -○:LDP man-pages:3.32:2008/10/06:hsearch:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/10/06:hsearch_r:3:hsearch:3: -@:LDP man-pages:3.32:2010/10/04:hstrerror:3:gethostbyname:3: -※:LDP man-pages:3.32:2010/09/10:htobe16:3:endian:3: -※:LDP man-pages:3.32:2010/09/10:htobe32:3:endian:3: -※:LDP man-pages:3.32:2010/09/10:htobe64:3:endian:3: -※:LDP man-pages:3.32:2010/09/10:htole16:3:endian:3: -※:LDP man-pages:3.32:2010/09/10:htole32:3:endian:3: -※:LDP man-pages:3.32:2010/09/10:htole64:3:endian:3: -@:LDP man-pages:3.32:2009/01/15:htonl:3:byteorder:3: -@:LDP man-pages:3.32:2009/01/15:htons:3:byteorder:3: -○:LDP man-pages:3.32:2010/09/20:hypot:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:hypotf:3:hypot:3: -@:LDP man-pages:3.32:2010/09/20:hypotl:3:hypot:3: -○:LDP man-pages:3.32:2008/09/08:iconv:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: -○:LDP man-pages:3.32:2008/08/11:iconv_close:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: -○:LDP man-pages:3.32:2008/08/11:iconv_open:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:ilogb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:ilogbf:3:ilogb:3: -@:LDP man-pages:3.32:2010/09/20:ilogbl:3:ilogb:3: -@:LDP man-pages:3.32:2010/09/20:imaxabs:3:abs:3: -@:LDP man-pages:3.32:2010/09/20:imaxdiv:3:div:3: -○:LDP man-pages:3.32:2010/09/20:index:3:1997/12/12::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -○:LDP man-pages:3.32:2008/06/19:inet:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/06/19:inet_addr:3:inet:3: -@:LDP man-pages:3.32:2008/06/19:inet_aton:3:inet:3: -@:LDP man-pages:3.32:2008/06/19:inet_lnaof:3:inet:3: -@:LDP man-pages:3.32:2008/06/19:inet_makeaddr:3:inet_addr:3: -@:LDP man-pages:3.32:2008/06/19:inet_netof:3:inet:3: -@:LDP man-pages:3.32:2008/06/19:inet_network:3:inet:3: -@:LDP man-pages:3.32:2008/06/19:inet_ntoa:3:inet:3: -○:LDP man-pages:3.32:2008/11/11:inet_ntop:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/06/18:inet_pton:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:1993/06/02:infnan:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2007/07/26:initgroups:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:initstate:3:random:3: -@:LDP man-pages:3.32:2008/03/07:initstate_r:3:random_r:3: -@:LDP man-pages:3.32:2007/07/26:innetgr:3:setnetgrent:3: -☆:LDP man-pages:3.25=>3.32:2010/09/09:insque:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2010/11/11:intro:3:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/28:iruserok:3:rcmd:3: -@:LDP man-pages:3.32:2010/09/20:isalnum:3:isalpha:3: -○:LDP man-pages:3.32:2010/09/20:isalpha:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:isascii:3:isalpha:3: -○:LDP man-pages:3.32:2008/12/03:isatty:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki: -@:LDP man-pages:3.32:2010/09/20:isblank:3:isalpha:3: -@:LDP man-pages:3.32:2010/09/20:iscntrl:3:isalpha:3: -@:LDP man-pages:3.32:2010/09/20:isdigit:3:isalpha:3: -@:LDP man-pages:3.32:2010/09/20:isfinite:3:fpclassify:3: -@:LDP man-pages:3.32:2010/09/20:isgraph:3:isalpha:3: -○:LDP man-pages:3.32:2010/09/20:isgreater:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:isgreaterequal:3:isgreater:3: -@:LDP man-pages:3.32:2010/09/20:isinf:3:fpclassify:3: -@:LDP man-pages:3.32:2008/08/05:isinff:3:finite:3: -@:LDP man-pages:3.32:2008/08/05:isinfl:3:finite:3: -@:LDP man-pages:3.32:2010/09/20:isless:3:isgreater:3: -@:LDP man-pages:3.32:2010/09/20:islessequal:3:isgreater:3: -@:LDP man-pages:3.32:2010/09/20:islessgreater:3:isgreater:3: -@:LDP man-pages:3.32:2010/09/20:islower:3:isalpha:3: -@:LDP man-pages:3.32:2010/09/20:isnan:3:fpclassify:3: -@:LDP man-pages:3.32:2008/08/05:isnanf:3:finite:3: -@:LDP man-pages:3.32:2008/08/05:isnanl:3:finite:3: -@:LDP man-pages:3.32:2010/09/20:isnormal:3:fpclassify:3: -@:LDP man-pages:3.32:2010/09/20:isprint:3:isalpha:3: -@:LDP man-pages:3.32:2010/09/20:ispunct:3:isalpha:3: -@:LDP man-pages:3.32:2010/09/20:isspace:3:isalpha:3: -@:LDP man-pages:3.32:2010/09/20:isunordered:3:isgreater:3: -@:LDP man-pages:3.32:2010/09/20:isupper:3:isalpha:3: -○:LDP man-pages:3.32:1999/07/25:iswalnum:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:1999/07/25:iswalpha:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2010/09/20:iswblank:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:1999/07/25:iswcntrl:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:iswctype:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:iswdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:1999/07/25:iswgraph:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:1999/07/25:iswlower:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:1999/07/25:iswprint:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:iswpunct:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:1999/07/25:iswspace:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:1999/07/25:iswupper:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:1999/07/25:iswxdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/09/20:isxdigit:3:isalpha:3: -○:LDP man-pages:3.32:2010/09/20:j0:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:j0f:3:j0:3: -@:LDP man-pages:3.32:2010/09/20:j0l:3:j0:3: -@:LDP man-pages:3.32:2010/09/20:j1:3:j0:3: -@:LDP man-pages:3.32:2010/09/20:j1f:3:j0:3: -@:LDP man-pages:3.32:2010/09/20:j1l:3:j0:3: -@:LDP man-pages:3.32:2010/09/20:jn:3:j0:3: -@:LDP man-pages:3.32:2010/09/20:jnf:3:j0:3: -@:LDP man-pages:3.32:2010/09/20:jnl:3:j0:3: -@:LDP man-pages:3.32:2007/07/26:jrand48:3:drand48:3: -@:LDP man-pages:3.32:2007/07/26:jrand48_r:3:drand48_r:3: -@:LDP man-pages:3.32:2002/07/18:key_decryptsession:3:key_setsecret:3: -@:LDP man-pages:3.32:2002/07/18:key_encryptsession:3:key_setsecret:3: -@:LDP man-pages:3.32:2002/07/18:key_gendes:3:key_setsecret:3: -@:LDP man-pages:3.32:2002/07/18:key_secretkey_is_set:3:key_setsecret:3: -○:LDP man-pages:3.32:2002/07/18:key_setsecret:3:2003/02/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/06/20:klogctl:3:syslog:2: -@:LDP man-pages:3.32:2010/09/20:l64a:3:a64l:3: -@:LDP man-pages:3.32:2010/09/20:labs:3:abs:3: -@:LDP man-pages:3.32:2010/02/25:lckpwdf:3:getspnam:3: -@:LDP man-pages:3.32:2007/07/26:lcong48:3:drand48:3: -@:LDP man-pages:3.32:2007/07/26:lcong48_r:3:drand48_r:3: -○:LDP man-pages:3.32:2010/09/20:ldexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:ldexpf:3:ldexp:3: -@:LDP man-pages:3.32:2010/09/20:ldexpl:3:ldexp:3: -@:LDP man-pages:3.32:2010/09/20:ldiv:3:div:3: -※:LDP man-pages:3.32:2010/09/10:le16toh:3:endian:3: -※:LDP man-pages:3.32:2010/09/10:le32toh:3:endian:3: -※:LDP man-pages:3.32:2010/09/10:le64toh:3:endian:3: -@:LDP man-pages:3.32:1999/09/27:lfind:3:lsearch:3: -○:LDP man-pages:3.32:2010/09/11:lgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/11:lgamma_r:3:lgamma:3: -@:LDP man-pages:3.32:2010/09/11:lgammaf:3:lgamma:3: -@:LDP man-pages:3.32:2010/09/11:lgammaf_r:3:lgamma:3: -@:LDP man-pages:3.32:2010/09/11:lgammal:3:lgamma:3: -@:LDP man-pages:3.32:2010/09/11:lgammal_r:3:lgamma:3: -×:LDP man-pages:3.32:2010/10/20:lio_listio:3::::: -@:LDP man-pages:3.32:2010/09/20:llabs:3:abs:3: -@:LDP man-pages:3.32:2010/09/20:lldiv:3:div:3: -@:LDP man-pages:3.32:2010/09/20:llrint:3:lrint:3: -@:LDP man-pages:3.32:2010/09/20:llrintf:3:lrint:3: -@:LDP man-pages:3.32:2010/09/20:llrintl:3:lrint:3: -@:LDP man-pages:3.32:2010/09/20:llround:3:lround:3: -@:LDP man-pages:3.32:2010/09/20:llroundf:3:lround:3: -@:LDP man-pages:3.32:2010/09/20:llroundl:3:lround:3: -○:LDP man-pages:3.32:1993/04/25:localeconv:3:1998/05/25::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -@:LDP man-pages:3.32:2010/02/25:localtime:3:ctime:3: -@:LDP man-pages:3.32:2010/02/25:localtime_r:3:ctime:3: -○:LDP man-pages:3.32:2010/09/20:lockf:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:log:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:log10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:log10f:3:log10:3: -@:LDP man-pages:3.32:2010/09/20:log10l:3:log10:3: -○:LDP man-pages:3.32:2010/09/20:log1p:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:log1pf:3:log1p:3: -@:LDP man-pages:3.32:2010/09/20:log1pl:3:log1p:3: -○:LDP man-pages:3.32:2010/09/12:log2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/12:log2f:3:log2:3: -@:LDP man-pages:3.32:2010/09/12:log2l:3:log2:3: -○:LDP man-pages:3.32:2010/09/20:logb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:logbf:3:logb:3: -@:LDP man-pages:3.32:2010/09/20:logbl:3:logb:3: -@:LDP man-pages:3.32:2010/09/20:logf:3:log:3: -○:LDP man-pages:3.32:2004/05/06:login:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/06/13:login_tty:3:openpty:3: -@:LDP man-pages:3.32:2010/09/20:logl:3:log:3: -@:LDP man-pages:3.32:2004/05/06:logout:3:login:3: -@:LDP man-pages:3.32:2008/07/02:logwtmp:3:updwtmp:3: -○:LDP man-pages:3.32:2009/01/13:longjmp:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/07/26:lrand48:3:drand48:3: -@:LDP man-pages:3.32:2007/07/26:lrand48_r:3:drand48_r:3: -○:LDP man-pages:3.32:2010/09/20:lrint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:lrintf:3:lrint:3: -@:LDP man-pages:3.32:2010/09/20:lrintl:3:lrint:3: -○:LDP man-pages:3.32:2010/09/20:lround:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:lroundf:3:lround:3: -@:LDP man-pages:3.32:2010/09/20:lroundl:3:lround:3: -○:LDP man-pages:3.32:1999/09/27:lsearch:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2004/12/11:lseek64:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2008/04/07:lutimes:3:futimes:3: -※:LDP man-pages:3.32:2010/09/10:major:3:makedev:3: -○:LDP man-pages:3.32:2009/03/31:makecontext:3:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2010/09/10:makedev:3::::: -☆:LDP man-pages:3.25=>3.32:2010/10/18:malloc:3:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.25=>3.32:2010/10/13:malloc_hook:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2010/09/10:matherr:3::::: -○:LDP man-pages:3.32:1999/07/25:mblen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:1999/07/25:mbrlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2001/11/22:mbrtowc:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2000/11/20:mbsinit:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2010/09/15:mbsnrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:1999/07/25:mbsrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:1999/07/25:mbstowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2001/07/04:mbtowc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -@:LDP man-pages:3.32:2010/09/20:memalign:3:posix_memalign:3: -○:LDP man-pages:3.32:2009/01/13:memccpy:3:1997/07/26::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -○:LDP man-pages:3.32:2009/12/04:memchr:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:1993/04/10:memcmp:3:1997/12/17::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -☆:LDP man-pages:3.31=>3.32:2010/11/15:memcpy:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -○:LDP man-pages:3.32:2010/09/10:memfrob:3:1998/05/34::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.32:2008/12/05:memmem:3:1997/12/17::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -○:LDP man-pages:3.32:1993/04/10:memmove:3:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/08/12:mempcpy:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2009/12/04:memrchr:3:memchr:3: -○:LDP man-pages:3.32:1993/04/11:memset:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: -※:LDP man-pages:3.32:2010/09/10:minor:3:makedev:3: -○:LDP man-pages:3.32:2010/09/26:mkdtemp:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.32:2008/06/12:mkfifo:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2009/12/13:mkfifoat:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/09/26:mkostemp:3:mkstemp:3: -@:LDP man-pages:3.32:2010/09/26:mkostemps:3:mkstemp:3: -☆:LDP man-pages:3.24=>3.32:2010/09/26:mkstemp:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/26:mkstemps:3:mkstemp:3: -○:LDP man-pages:3.32:2010/09/20:mktemp:3:1999/04/10::tanisako@osa.dec.com:Kazuyuki Tanisako: -@:LDP man-pages:3.32:2010/02/25:mktime:3:ctime:3: -@:LDP man-pages:3.32:2008/04/22:mmap64:3:mmap2:2: -○:LDP man-pages:3.32:2010/09/20:modf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:modff:3:modf:3: -@:LDP man-pages:3.32:2010/09/20:modfl:3:modf:3: -○:LDP man-pages:3.32:1993/06/04:mpool:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2010/08/29:mq_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/08/29:mq_getattr:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/10/04:mq_notify:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/02/20:mq_open:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:mq_receive:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:mq_send:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/08/29:mq_setattr:3:mq_getattr:3: -@:LDP man-pages:3.32:2010/09/20:mq_timedreceive:3:mq_receive:3: -@:LDP man-pages:3.32:2010/09/20:mq_timedsend:3:mq_send:3: -○:LDP man-pages:3.32:2010/08/29:mq_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/07/26:mrand48:3:drand48:3: -@:LDP man-pages:3.32:2007/07/26:mrand48_r:3:drand48_r:3: -○:LDP man-pages:3.32:2002/07/20:mtrace:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2002/07/20:muntrace:3:mtrace:3: -○:LDP man-pages:3.32:2010/09/20:nan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:nanf:3:nan:3: -@:LDP man-pages:3.32:2010/09/20:nanl:3:nan:3: -@:LDP man-pages:3.32:2010/09/20:nearbyint:3:rint:3: -@:LDP man-pages:3.32:2010/09/20:nearbyintf:3:rint:3: -@:LDP man-pages:3.32:2010/09/20:nearbyintl:3:rint:3: -○:LDP man-pages:3.32:1999/05/14:netlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2010/09/20:nextafter:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:nextafterf:3:nextafter:3: -@:LDP man-pages:3.32:2010/09/20:nextafterl:3:nextafter:3: -@:LDP man-pages:3.32:2010/09/20:nexttoward:3:nextafter:3: -@:LDP man-pages:3.32:2010/09/20:nexttowardf:3:nextafter:3: -@:LDP man-pages:3.32:2010/09/20:nexttowardl:3:nextafter:3: -@:LDP man-pages:3.32:2010/09/20:nftw:3:ftw:3: -○:LDP man-pages:3.32:2010/10/03:nl_langinfo:3:2001/07/15::KY4N-UCD@asahi-net.or.jp:UCHIDA Norihiro: -@:LDP man-pages:3.32:2007/07/26:nrand48:3:drand48:3: -@:LDP man-pages:3.32:2007/07/26:nrand48_r:3:drand48_r:3: -@:LDP man-pages:3.32:2009/01/15:ntohl:3:byteorder:3: -@:LDP man-pages:3.32:2009/01/15:ntohs:3:byteorder:3: -○:LDP man-pages:3.32:2008/07/12:offsetof:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/12/05:on_exit:3:2009/01/15:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/15:open_memstream:3:fmemopen:3: -@:LDP man-pages:3.32:2010/09/15:open_wmemstream:3:fmemopen:3: -○:LDP man-pages:3.32:2010/06/20:opendir:3:2007/10/14:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/11/12:openlog:3:syslog:3: -○:LDP man-pages:3.32:2010/06/13:openpty:3:2006/02/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/11/01:optarg:3:getopt:3: -@:LDP man-pages:3.32:2010/11/01:opterr:3:getopt:3: -@:LDP man-pages:3.32:2010/11/01:optind:3:getopt:3: -@:LDP man-pages:3.32:2010/11/01:optopt:3:getopt:3: -@:LDP man-pages:3.32:2003/04/04:passwd2des:3:xcrypt:3: -@:LDP man-pages:3.32:1993/04/04:pathconf:3:fpathconf:3: -@:LDP man-pages:3.32:2010/02/03:pclose:3:popen:3: -○:LDP man-pages:3.32:2007/07/26:perror:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/07/17:pmap_getmaps:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:pmap_getport:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:pmap_rmtcall:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:pmap_set:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:pmap_unset:3:rpc:3: -○:LDP man-pages:3.32:2010/02/03:popen:3:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:posix_fallocate:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2010/09/20:posix_memalign:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/10/04:posix_openpt:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2010/09/12:pow:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/08/11:pow10:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2008/08/11:pow10f:3:pow10:3: -@:LDP man-pages:3.32:2008/08/11:pow10l:3:pow10:3: -@:LDP man-pages:3.32:2010/09/12:powf:3:pow:3: -@:LDP man-pages:3.32:2010/09/12:powl:3:pow:3: -○:LDP man-pages:3.32:2010/09/20:printf:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/07/26:profil:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2006/04/29:program_invocation_name:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2006/04/29:program_invocation_short_name:3:program_invocation_name:3: -@:LDP man-pages:3.32:2010/10/06:psiginfo:3:psignal:3: -☆:LDP man-pages:3.25=>3.32:2010/10/06:psignal:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -※:LDP man-pages:3.32:2008/11/11:pthread_attr_destroy:3:pthread_attr_init:3: -※:LDP man-pages:3.32:2010/09/10:pthread_attr_getaffinity_np:3:pthread_attr_setaffinity_np:3: -※:LDP man-pages:3.32:2010/02/03:pthread_attr_getdetachstate:3:pthread_attr_setdetachstate:3: -※:LDP man-pages:3.32:2008/10/24:pthread_attr_getguardsize:3:pthread_attr_setguardsize:3: -※:LDP man-pages:3.32:2008/11/10:pthread_attr_getinheritsched:3:pthread_attr_setinheritsched:3: -※:LDP man-pages:3.32:2010/02/03:pthread_attr_getschedparam:3:pthread_attr_setschedparam:3: -※:LDP man-pages:3.32:2010/02/03:pthread_attr_getschedpolicy:3:pthread_attr_setschedpolicy:3: -※:LDP man-pages:3.32:2008/10/24:pthread_attr_getscope:3:pthread_attr_setscope:3: -※:LDP man-pages:3.32:2008/10/24:pthread_attr_getstack:3:pthread_attr_setstack:3: -※:LDP man-pages:3.32:2008/10/24:pthread_attr_getstackaddr:3:pthread_attr_setstackaddr:3: -※:LDP man-pages:3.32:2008/11/05:pthread_attr_getstacksize:3:pthread_attr_setstacksize:3: -×:LDP man-pages:3.32:2008/11/11:pthread_attr_init:3::::: -×:LDP man-pages:3.32:2010/09/10:pthread_attr_setaffinity_np:3::::: -×:LDP man-pages:3.32:2010/02/03:pthread_attr_setdetachstate:3::::: -×:LDP man-pages:3.32:2008/10/24:pthread_attr_setguardsize:3::::: -×:LDP man-pages:3.32:2008/11/10:pthread_attr_setinheritsched:3::::: -×:LDP man-pages:3.32:2010/02/03:pthread_attr_setschedparam:3::::: -×:LDP man-pages:3.32:2010/02/03:pthread_attr_setschedpolicy:3::::: -×:LDP man-pages:3.32:2008/10/24:pthread_attr_setscope:3::::: -×:LDP man-pages:3.32:2008/10/24:pthread_attr_setstack:3::::: -×:LDP man-pages:3.32:2008/10/24:pthread_attr_setstackaddr:3::::: -×:LDP man-pages:3.32:2008/11/05:pthread_attr_setstacksize:3::::: -×:LDP man-pages:3.32:2008/11/17:pthread_cancel:3::::: -※:LDP man-pages:3.32:2008/11/24:pthread_cleanup_pop:3:pthread_cleanup_push:3: -※:LDP man-pages:3.32:2008/12/04:pthread_cleanup_pop_restore_np:3:pthread_cleanup_push_defer_np:3: -×:LDP man-pages:3.32:2008/11/24:pthread_cleanup_push:3::::: -×:LDP man-pages:3.32:2008/12/04:pthread_cleanup_push_defer_np:3::::: -×:LDP man-pages:3.32:2008/11/11:pthread_create:3::::: -×:LDP man-pages:3.32:2008/11/27:pthread_detach:3::::: -×:LDP man-pages:3.32:2009/03/30:pthread_equal:3::::: -×:LDP man-pages:3.32:2009/03/30:pthread_exit:3::::: -※:LDP man-pages:3.32:2010/09/10:pthread_getaffinity_np:3:pthread_setaffinity_np:3: -×:LDP man-pages:3.32:2010/09/10:pthread_getattr_np:3::::: -※:LDP man-pages:3.32:2009/04/10:pthread_getconcurrency:3:pthread_setconcurrency:3: -×:LDP man-pages:3.32:2009/02/08:pthread_getcpuclockid:3::::: -※:LDP man-pages:3.32:2008/11/17:pthread_getschedparam:3:pthread_setschedparam:3: -×:LDP man-pages:3.32:2008/11/27:pthread_join:3::::: -×:LDP man-pages:3.32:2009/01/28:pthread_kill:3::::: -×:LDP man-pages:3.32:2010/09/09:pthread_kill_other_threads_np:3::::: -×:LDP man-pages:3.32:2008/10/24:pthread_self:3::::: -×:LDP man-pages:3.32:2010/09/10:pthread_setaffinity_np:3::::: -×:LDP man-pages:3.32:2008/11/24:pthread_setcancelstate:3::::: -※:LDP man-pages:3.32:2008/11/24:pthread_setcanceltype:3:pthread_setcancelstate:3: -×:LDP man-pages:3.32:2009/04/10:pthread_setconcurrency:3::::: -×:LDP man-pages:3.32:2008/11/17:pthread_setschedparam:3::::: -×:LDP man-pages:3.32:2008/11/06:pthread_setschedprio:3::::: -×:LDP man-pages:3.32:2009/01/25:pthread_sigmask:3::::: -×:LDP man-pages:3.32:2010/11/16:pthread_sigqueue:3::::: -×:LDP man-pages:3.32:2008/11/17:pthread_testcancel:3::::: -※:LDP man-pages:3.32:2010/09/10:pthread_timedjoin_np:3:pthread_tryjoin_np:3: -×:LDP man-pages:3.32:2010/09/10:pthread_tryjoin_np:3::::: -×:LDP man-pages:3.32:2009/04/10:pthread_yield:3::::: -○:LDP man-pages:3.32:2008/09/03:ptsname:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/09/03:ptsname_r:3:ptsname:3: -@:LDP man-pages:3.32:1993/04/04:putc:3:puts:3: -@:LDP man-pages:3.32:2008/08/29:putc_unlocked:3:unlocked_stdio:3: -@:LDP man-pages:3.32:1993/04/04:putchar:3:puts:3: -@:LDP man-pages:3.32:2008/08/29:putchar_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.32:2007/07/26:putenv:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2003/09/09:putgrent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2007/07/26:putpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -○:LDP man-pages:3.32:1993/04/04:puts:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/02/25:putspent:3:getspnam:3: -@:LDP man-pages:3.32:2008/06/29:pututline:3:getutent:3: -@:LDP man-pages:3.32:2008/06/29:pututxline:3:getutent:3: -@:LDP man-pages:3.32:2010/09/26:putw:3:getw:3: -@:LDP man-pages:3.32:1999/07/25:putwc:3:fputwc:3: -@:LDP man-pages:3.32:2008/08/29:putwc_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.32:1999/07/25:putwchar:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2008/08/29:putwchar_unlocked:3:unlocked_stdio:3: -○:LDP man-pages:3.32:2010/09/20:qecvt:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/07/26:qecvt_r:3:ecvt_r:3: -@:LDP man-pages:3.32:2010/09/20:qfcvt:3:qecvt:3: -@:LDP man-pages:3.32:2007/07/26:qfcvt_r:3:ecvt_r:3: -@:LDP man-pages:3.32:2010/09/20:qgcvt:3:qecvt:3: -○:LDP man-pages:3.32:2009/09/15:qsort:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/12/28:queue:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2008/10/17:raise:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -☆:LDP man-pages:3.25=>3.32:2010/10/01:rand:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/10/01:rand_r:3:rand:3: -○:LDP man-pages:3.32:2010/09/20:random:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: -○:LDP man-pages:3.32:2008/03/07:random_r:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2009/12/04:rawmemchr:3:memchr:3: -○:LDP man-pages:3.32:2007/12/28:rcmd:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:1995/07/14:re_comp:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -@:LDP man-pages:3.32:1995/07/14:re_exec:3:re_comp:3: -○:LDP man-pages:3.32:2010/09/10:readdir:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/10:readdir_r:3:readdir:3: -@:LDP man-pages:3.32:2010/10/18:realloc:3:malloc:3: -○:LDP man-pages:3.32:2010/09/20:realpath:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:1994/08/18:recno:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo: -@:LDP man-pages:3.32:2008/05/29:regcomp:3:regex:3: -@:LDP man-pages:3.32:2008/05/29:regerror:3:regex:3: -○:LDP man-pages:3.32:2008/05/29:regex:3:2005/03/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/05/29:regexec:3:regex:3: -@:LDP man-pages:3.32:2008/05/29:regfree:3:regex:3: -@:LDP man-pages:3.32:2008/07/17:registerrpc:3:rpc:3: -○:LDP man-pages:3.32:2010/09/20:remainder:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:remainderf:3:remainder:3: -@:LDP man-pages:3.32:2010/09/20:remainderl:3:remainder:3: -○:LDP man-pages:3.32:2008/12/03:remove:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/09/09:remque:3:insque:3: -○:LDP man-pages:3.32:2010/09/20:remquo:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:remquof:3:remquo:3: -@:LDP man-pages:3.32:2010/09/20:remquol:3:remquo:3: -@:LDP man-pages:3.32:2010/06/17:res_init:3:resolver:3: -@:LDP man-pages:3.32:2010/06/17:res_mkquery:3:resolver:3: -@:LDP man-pages:3.32:2010/06/17:res_query:3:resolver:3: -@:LDP man-pages:3.32:2010/06/17:res_querydomain:3:resolver:3: -@:LDP man-pages:3.32:2010/06/17:res_search:3:resolver:3: -@:LDP man-pages:3.32:2010/06/17:res_send:3:resolver:3: -○:LDP man-pages:3.32:2010/06/17:resolver:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:1993/11/29:rewind:3:fseek:3: -○:LDP man-pages:3.32:1995/06/11:rewinddir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -○:LDP man-pages:3.32:2010/09/10:rexec:3:2005/12/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:rindex:3:index:3: -○:LDP man-pages:3.32:2010/09/20:rint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:rintf:3:rint:3: -@:LDP man-pages:3.32:2010/09/20:rintl:3:rint:3: -○:LDP man-pages:3.32:2010/09/20:round:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:roundf:3:round:3: -@:LDP man-pages:3.32:2010/09/20:roundl:3:round:3: -○:LDP man-pages:3.32:2008/07/17:rpc:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.32:2007/07/26:rpmatch:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/12/28:rresvport:3:rcmd:3: -○:LDP man-pages:3.32:2010/02/25:rtime:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2010/01/11:rtnetlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: -@:LDP man-pages:3.32:2007/12/28:ruserok:3:rcmd:3: -○:LDP man-pages:3.32:2010/09/20:scalb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:scalbf:3:scalb:3: -@:LDP man-pages:3.32:2010/09/20:scalbl:3:scalb:3: -×:LDP man-pages:3.32:2010/09/20:scalbln:3::::: -※:LDP man-pages:3.32:2010/09/20:scalblnf:3:scalbln:3: -※:LDP man-pages:3.32:2010/09/20:scalblnl:3:scalbln:3: -※:LDP man-pages:3.32:2010/09/20:scalbn:3:scalbln:3: -※:LDP man-pages:3.32:2010/09/20:scalbnf:3:scalbln:3: -※:LDP man-pages:3.32:2010/09/20:scalbnl:3:scalbln:3: -○:LDP man-pages:3.32:2009/02/10:scandir:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:scanf:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/10/31:sched_getcpu:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2007/07/26:seed48:3:drand48:3: -@:LDP man-pages:3.32:2007/07/26:seed48_r:3:drand48_r:3: -○:LDP man-pages:3.32:2009/03/11:seekdir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -○:LDP man-pages:3.32:2006/03/25:sem_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2006/03/25:sem_destroy:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2006/03/25:sem_getvalue:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/07/27:sem_init:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/02/20:sem_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/03/30:sem_post:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/02/25:sem_timedwait:3:sem_wait:3: -@:LDP man-pages:3.32:2010/02/25:sem_trywait:3:sem_wait:3: -○:LDP man-pages:3.32:2006/03/25:sem_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/02/25:sem_wait:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2003/09/09:setaliasent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2008/06/26:setbuf:3:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: -@:LDP man-pages:3.32:2008/06/26:setbuffer:3:setbuf:3: -○:LDP man-pages:3.32:2009/09/20:setenv:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2002/02/28:setfsent:3:getfsent:3: -@:LDP man-pages:3.32:2010/10/21:setgrent:3:getgrent:3: -@:LDP man-pages:3.32:2010/10/04:sethostent:3:gethostbyname:3: -@:LDP man-pages:3.32:2010/09/20:sethostid:3:gethostid:3: -○:LDP man-pages:3.32:2009/06/26:setjmp:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2003/04/04:setkey:3:encrypt:3: -@:LDP man-pages:3.32:2003/04/04:setkey_r:3:encrypt:3: -@:LDP man-pages:3.32:2008/06/26:setlinebuf:3:setbuf:3: -○:LDP man-pages:3.32:2008/12/05:setlocale:3:2002/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2001/10/05:setlogmask:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2009/09/15:setmntent:3:getmntent:3: -@:LDP man-pages:3.32:2008/08/19:setnetent:3:getnetent:3: -○:LDP man-pages:3.32:2007/07/26:setnetgrent:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/19:setprotoent:3:getprotoent:3: -@:LDP man-pages:3.32:2010/10/21:setpwent:3:getpwent:3: -@:LDP man-pages:3.32:2008/08/19:setrpcent:3:getrpcent:3: -@:LDP man-pages:3.32:2008/08/19:setservent:3:getservent:3: -@:LDP man-pages:3.32:2010/02/25:setspent:3:getspnam:3: -@:LDP man-pages:3.32:2010/09/20:setstate:3:random:3: -@:LDP man-pages:3.32:2008/03/07:setstate_r:3:random_r:3: -@:LDP man-pages:3.32:2002/07/18:setttyent:3:getttyent:3: -@:LDP man-pages:3.32:2007/07/26:setusershell:3:getusershell:3: -@:LDP man-pages:3.32:2008/06/29:setutent:3:getutent:3: -@:LDP man-pages:3.32:2008/06/29:setutxent:3:getutent:3: -@:LDP man-pages:3.32:2008/06/26:setvbuf:3:setbuf:3: -@:LDP man-pages:3.32:2010/02/25:sgetspent:3:getspnam:3: -@:LDP man-pages:3.32:2010/02/25:sgetspent_r:3:getspnam:3: -○:LDP man-pages:3.32:2009/02/25:shm_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2009/02/25:shm_unlink:3:shm_open:3: -@:LDP man-pages:3.32:2008/09/01:sigaddset:3:sigsetops:3: -@:LDP man-pages:3.32:2008/09/01:sigandset:3:sigsetops:3: -@:LDP man-pages:3.32:2007/07/26:sigblock:3:sigvec:3: -@:LDP man-pages:3.32:2008/09/01:sigdelset:3:sigsetops:3: -@:LDP man-pages:3.32:2008/09/01:sigemptyset:3:sigsetops:3: -@:LDP man-pages:3.32:2008/09/01:sigfillset:3:sigsetops:3: -@:LDP man-pages:3.32:2007/07/26:siggetmask:3:sigvec:3: -@:LDP man-pages:3.32:2010/09/20:sighold:3:sigset:3: -@:LDP man-pages:3.32:2010/09/20:sigignore:3:sigset:3: -○:LDP man-pages:3.32:2010/09/26:siginterrupt:3:1998/05/24::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -@:LDP man-pages:3.32:2008/09/01:sigisemptyset:3:sigsetops:3: -@:LDP man-pages:3.32:2008/09/01:sigismember:3:sigsetops:3: -@:LDP man-pages:3.32:2009/01/13:siglongjmp:3:longjmp:3: -@:LDP man-pages:3.32:2007/07/26:sigmask:3:sigvec:3: -○:LDP man-pages:3.32:2010/09/20:signbit:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/11:signgam:3:lgamma:3: -○:LDP man-pages:3.32:2009/02/04:significand:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2009/02/04:significandf:3:significand:3: -@:LDP man-pages:3.32:2009/02/04:significandl:3:significand:3: -@:LDP man-pages:3.32:2008/09/01:sigorset:3:sigsetops:3: -○:LDP man-pages:3.32:2010/09/12:sigpause:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:sigrelse:3:sigset:3: -○:LDP man-pages:3.32:2010/09/20:sigset:3:2005/12/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2009/06/26:sigsetjmp:3:setjmp:3: -@:LDP man-pages:3.32:2007/07/26:sigsetmask:3:sigvec:3: -○:LDP man-pages:3.32:2008/09/01:sigsetops:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/26:sigstack:3:sigaltstack:2: -○:LDP man-pages:3.32:2007/07/26:sigvec:3:2005/12/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/10:sigwait:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/11:sin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/08/11:sincos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/11:sincosf:3:sincos:3: -@:LDP man-pages:3.32:2008/08/11:sincosl:3:sincos:3: -@:LDP man-pages:3.32:2010/09/11:sinf:3:sin:3: -○:LDP man-pages:3.32:2010/09/20:sinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:sinhf:3:sinh:3: -@:LDP man-pages:3.32:2010/09/20:sinhl:3:sinh:3: -@:LDP man-pages:3.32:2010/09/11:sinl:3:sin:3: -○:LDP man-pages:3.32:2010/02/03:sleep:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: -@:LDP man-pages:3.32:2010/09/20:snprintf:3:printf:3: -○:LDP man-pages:3.32:2008/12/03:sockatmark:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/09/20:sprintf:3:printf:3: -○:LDP man-pages:3.32:2010/09/20:sqrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:sqrtf:3:sqrt:3: -@:LDP man-pages:3.32:2010/09/20:sqrtl:3:sqrt:3: -@:LDP man-pages:3.32:2010/10/01:srand:3:rand:3: -@:LDP man-pages:3.32:2007/07/26:srand48:3:drand48:3: -@:LDP man-pages:3.32:2007/07/26:srand48_r:3:drand48_r:3: -@:LDP man-pages:3.32:2010/09/20:srandom:3:random:3: -@:LDP man-pages:3.32:2008/03/07:srandom_r:3:random_r:3: -@:LDP man-pages:3.32:2010/09/20:sscanf:3:scanf:3: -@:LDP man-pages:3.32:2007/07/26:ssignal:3:gsignal:3: -○:LDP man-pages:3.32:2003/08/22:statvfs:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2001/10/14:stdarg:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2008/07/14:stderr:3:stdin:3: -○:LDP man-pages:3.32:2008/07/14:stdin:3:2005/09/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2001/12/26:stdio:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2001/12/16:stdio_ext:3:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/07/14:stdout:3:stdin:3: -○:LDP man-pages:3.32:2010/09/15:stpcpy:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -○:LDP man-pages:3.32:2010/09/15:stpncpy:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2010/09/20:strcasecmp:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -@:LDP man-pages:3.32:2010/09/20:strcasestr:3:strstr:3: -○:LDP man-pages:3.32:2010/09/20:strcat:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2010/09/20:strchr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:strchrnul:3:strchr:3: -○:LDP man-pages:3.32:2010/09/20:strcmp:3:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:strcoll:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:strcpy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/09/20:strcspn:3:strspn:3: -○:LDP man-pages:3.32:2010/09/26:strdup:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2010/09/26:strdupa:3:strdup:3: -○:LDP man-pages:3.32:2009/03/30:strerror:3:2005/12/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2009/03/30:strerror_r:3:strerror:3: -○:LDP man-pages:3.32:2000/12/05:strfmon:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2010/09/20:strfry:3:1998/05/25::motoki@hal.t.u-tokyo.ac.jp:Akihiro Motoki: -○:LDP man-pages:3.32:2010/01/17:strftime:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/02/25:string:3:1997/01/20::yoshino@civil.jcn.nihon-u.ac.jp:YOSHINO Takashi: -○:LDP man-pages:3.32:1993/04/12:strlen:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: -@:LDP man-pages:3.32:2010/09/20:strncasecmp:3:strcasecmp:3: -@:LDP man-pages:3.32:2010/09/20:strncat:3:strcat:3: -@:LDP man-pages:3.32:2010/09/20:strncmp:3:strcmp:3: -@:LDP man-pages:3.32:2010/09/20:strncpy:3:strcpy:3: -@:LDP man-pages:3.32:2010/09/26:strndup:3:strdup:3: -@:LDP man-pages:3.32:2010/09/26:strndupa:3:strdup:3: -○:LDP man-pages:3.32:2010/10/31:strnlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2010/09/20:strpbrk:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata: -○:LDP man-pages:3.32:2009/12/05:strptime:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/09/20:strrchr:3:strchr:3: -○:LDP man-pages:3.32:2010/09/20:strsep:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2010/09/15:strsignal:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata: -○:LDP man-pages:3.32:2010/09/20:strspn:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -○:LDP man-pages:3.32:2010/09/20:strstr:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2010/09/20:strtod:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:strtof:3:strtod:3: -○:LDP man-pages:3.32:2003/11/28:strtoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2010/09/27:strtok:3:2005/11/19:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/27:strtok_r:3:strtok:3: -○:LDP man-pages:3.32:2010/09/20:strtol:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:strtold:3:strtod:3: -@:LDP man-pages:3.32:2010/09/20:strtoll:3:strtol:3: -@:LDP man-pages:3.32:2010/09/20:strtoq:3:strtol:3: -○:LDP man-pages:3.32:2010/09/20:strtoul:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:strtoull:3:strtoul:3: -@:LDP man-pages:3.32:2003/11/28:strtoumax:3:strtoimax:3: -@:LDP man-pages:3.32:2010/09/20:strtouq:3:strtoul:3: -○:LDP man-pages:3.32:2001/12/19:strverscmp:3:2002/09/22::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:strxfrm:3:1999/03/24::ss236rx@ymg.urban.ne.jp:Shouichi Saito: -@:LDP man-pages:3.32:2008/07/17:svc_destroy:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svc_freeargs:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svc_getargs:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svc_getcaller:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svc_getreq:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svc_getreqset:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svc_register:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svc_run:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svc_sendreply:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svc_unregister:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svcerr_auth:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svcerr_decode:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svcerr_noproc:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svcerr_noprog:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svcerr_progvers:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svcerr_systemerr:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svcerr_weakauth:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svcfd_create:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svcraw_create:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svctcp_create:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svcudp_bufcreate:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:svcudp_create:3:rpc:3: -○:LDP man-pages:3.32:2001/12/15:swab:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2009/03/31:swapcontext:3:makecontext:3: -@:LDP man-pages:3.32:2010/09/20:swprintf:3:wprintf:3: -@:LDP man-pages:3.32:2007/07/26:sys_errlist:3:perror:3: -@:LDP man-pages:3.32:2007/07/26:sys_nerr:3:perror:3: -○:LDP man-pages:3.32:2007/12/12:sysconf:3:2005/03/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/11/12:syslog:3:2008/07/24:o:argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2010/09/10:system:3:2005/03/12:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/05/04:sysv_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/11:tan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/11:tanf:3:tan:3: -○:LDP man-pages:3.32:2010/09/20:tanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:tanhf:3:tanh:3: -@:LDP man-pages:3.32:2010/09/20:tanhl:3:tanh:3: -@:LDP man-pages:3.32:2010/09/11:tanl:3:tan:3: -@:LDP man-pages:3.32:2010/06/20:tcdrain:3:termios:3: -@:LDP man-pages:3.32:2010/06/20:tcflow:3:termios:3: -@:LDP man-pages:3.32:2010/06/20:tcflush:3:termios:3: -@:LDP man-pages:3.32:2010/06/20:tcgetattr:3:termios:3: -○:LDP man-pages:3.32:2003/01/28:tcgetpgrp:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/10:tcgetsid:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/06/20:tcsendbreak:3:termios:3: -@:LDP man-pages:3.32:2010/06/20:tcsetattr:3:termios:3: -@:LDP man-pages:3.32:2003/01/28:tcsetpgrp:3:tcgetpgrp:3: -@:LDP man-pages:3.32:2008/09/23:tdelete:3:tsearch:3: -@:LDP man-pages:3.32:2008/09/23:tdestroy:3:tsearch:3: -○:LDP man-pages:3.32:2009/03/11:telldir:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/07/26:tempnam:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/06/20:termios:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/09/23:tfind:3:tsearch:3: -○:LDP man-pages:3.32:2010/09/20:tgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:tgammaf:3:tgamma:3: -@:LDP man-pages:3.32:2010/09/20:tgammal:3:tgamma:3: -○:LDP man-pages:3.32:2007/07/26:timegm:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -@:LDP man-pages:3.32:2007/07/26:timelocal:3:timegm:3: -○:LDP man-pages:3.32:2010/02/25:timeradd:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/02/25:timerclear:3:timeradd:3: -@:LDP man-pages:3.32:2010/02/25:timercmp:3:timeradd:3: -@:LDP man-pages:3.32:2010/02/25:timerisset:3:timeradd:3: -@:LDP man-pages:3.32:2010/02/25:timersub:3:timeradd:3: -@:LDP man-pages:3.32:2010/02/25:timezone:3:tzset:3: -○:LDP man-pages:3.32:2008/07/14:tmpfile:3:2001/12/14:o:ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.32:2010/09/10:tmpnam:3:2006/07/26:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/10:tmpnam_r:3:tmpnam:3: -○:LDP man-pages:3.32:2009/03/15:toascii:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: -@:LDP man-pages:3.32:1993/04/04:tolower:3:toupper:3: -○:LDP man-pages:3.32:1993/04/04:toupper:3:1997/04/29::rui@linux.or.jp:Ueyama Rui: -○:LDP man-pages:3.32:1999/07/25:towctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:towlower:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:towupper:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:2010/09/20:trunc:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/09/20:truncf:3:trunc:3: -@:LDP man-pages:3.32:2010/09/20:truncl:3:trunc:3: -○:LDP man-pages:3.32:2008/09/23:tsearch:3:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.32:2008/07/14:ttyname:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2008/07/14:ttyname_r:3:ttyname:3: -○:LDP man-pages:3.32:2010/09/20:ttyslot:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2008/09/23:twalk:3:tsearch:3: -@:LDP man-pages:3.32:2010/02/25:tzname:3:tzset:3: -○:LDP man-pages:3.32:2010/02/25:tzset:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/20:ualarm:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/02/25:ulckpwdf:3:getspnam:3: -○:LDP man-pages:3.32:2008/08/06:ulimit:3:1998/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2010/02/10:undocumented:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/06:ungetc:3:gets:3: -○:LDP man-pages:3.32:1999/09/19:ungetwc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2008/08/29:unlocked_stdio:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/06/14:unlockpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2009/09/20:unsetenv:3:setenv:3: -○:LDP man-pages:3.32:2008/07/02:updwtmp:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2008/07/02:updwtmpx:3:updwtmp:3: -☆:LDP man-pages:3.31=>3.32:2010/12/03:usleep:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/06/29:utmpname:3:getutent:3: -@:LDP man-pages:3.32:2008/06/29:utmpxname:3:getutent:3: -@:LDP man-pages:3.32:2001/10/14:va_arg:3:stdarg:3: -@:LDP man-pages:3.32:2001/10/14:va_copy:3:stdarg:3: -@:LDP man-pages:3.32:2001/10/14:va_end:3:stdarg:3: -@:LDP man-pages:3.32:2001/10/14:va_start:3:stdarg:3: -@:LDP man-pages:3.32:2010/09/20:valloc:3:posix_memalign:3: -@:LDP man-pages:3.32:2001/12/18:vasprintf:3:asprintf:3: -@:LDP man-pages:3.32:2010/09/15:vdprintf:3:dprintf:3: -@:LDP man-pages:3.32:2007/12/28:verr:3:err:3: -@:LDP man-pages:3.32:2007/12/28:verrx:3:err:3: -@:LDP man-pages:3.32:2009/02/10:versionsort:3:scandir:3: -@:LDP man-pages:3.32:2010/09/20:vfprintf:3:printf:3: -@:LDP man-pages:3.32:2010/09/20:vfscanf:3:scanf:3: -@:LDP man-pages:3.32:2010/09/20:vfwprintf:3:wprintf:3: -@:LDP man-pages:3.32:2010/12/03:vlimit:3:getrlimit:2: -@:LDP man-pages:3.32:2010/09/20:vprintf:3:printf:3: -@:LDP man-pages:3.32:2010/09/20:vscanf:3:scanf:3: -@:LDP man-pages:3.32:2010/09/20:vsnprintf:3:printf:3: -@:LDP man-pages:3.32:2010/09/20:vsprintf:3:printf:3: -@:LDP man-pages:3.32:2010/09/20:vsscanf:3:scanf:3: -@:LDP man-pages:3.32:2010/09/20:vswprintf:3:wprintf:3: -@:LDP man-pages:3.32:2008/11/12:vsyslog:3:syslog:3: -@:LDP man-pages:3.32:2010/09/26:vtimes:3:getrusage:2: -@:LDP man-pages:3.32:2007/12/28:vwarn:3:err:3: -@:LDP man-pages:3.32:2007/12/28:vwarnx:3:err:3: -@:LDP man-pages:3.32:2010/09/20:vwprintf:3:wprintf:3: -@:LDP man-pages:3.32:2007/12/28:warn:3:err:3: -@:LDP man-pages:3.32:2007/12/28:warnx:3:err:3: -○:LDP man-pages:3.32:2010/09/15:wcpcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:2010/09/15:wcpncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcrtomb:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:2010/09/15:wcscasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcscat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcschr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcscmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcscpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcscspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:2010/09/15:wcsdup:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:1999/07/25:wcslen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:2010/09/15:wcsncasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcsncat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcsncmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcsncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:2010/09/15:wcsnlen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:2010/09/15:wcsnrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcspbrk:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcsrchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcsrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcsspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcsstr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:2003/11/01:wcstoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:1999/07/25:wcstok:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcstombs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -@:LDP man-pages:3.32:2003/11/01:wcstoumax:3:wcstoimax:3: -○:LDP man-pages:3.32:2010/09/10:wcswidth:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:2009/02/04:wctob:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wctomb:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:1999/07/25:wctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wctype:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wcwidth:3:2002/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:1999/07/25:wmemchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wmemcmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wmemcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:1999/07/25:wmemmove:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -@:LDP man-pages:3.32:2008/08/12:wmempcpy:3:mempcpy:3: -○:LDP man-pages:3.32:1999/07/25:wmemset:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: -○:LDP man-pages:3.32:2008/07/14:wordexp:3:2004/09/29::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2008/07/14:wordfree:3:wordexp:3: -○:LDP man-pages:3.32:2010/09/20:wprintf:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2003/04/04:xcrypt:3:2004/10/16::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2003/04/04:xdecrypt:3:xcrypt:3: -○:LDP man-pages:3.32:2007/12/30:xdr:3:2000/01/14::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -@:LDP man-pages:3.32:2008/07/17:xdr_accepted_reply:3:rpc:3: -@:LDP man-pages:3.32:2007/12/30:xdr_array:3:xdr:3: -@:LDP man-pages:3.32:2008/07/17:xdr_authunix_parms:3:rpc:3: -@:LDP man-pages:3.32:2007/12/30:xdr_bool:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_bytes:3:xdr:3: -@:LDP man-pages:3.32:2008/07/17:xdr_callhdr:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:xdr_callmsg:3:rpc:3: -@:LDP man-pages:3.32:2007/12/30:xdr_char:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_destroy:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_double:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_enum:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_float:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_free:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_getpos:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_inline:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_int:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_long:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_opaque:3:xdr:3: -@:LDP man-pages:3.32:2008/07/17:xdr_opaque_auth:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:xdr_pmap:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:xdr_pmaplist:3:rpc:3: -@:LDP man-pages:3.32:2007/12/30:xdr_pointer:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_reference:3:xdr:3: -@:LDP man-pages:3.32:2008/07/17:xdr_rejected_reply:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:xdr_replymsg:3:rpc:3: -@:LDP man-pages:3.32:2007/12/30:xdr_setpos:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_short:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_string:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_u_char:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_u_int:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_u_long:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_u_short:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_union:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_vector:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_void:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdr_wrapstring:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdrmem_create:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdrrec_create:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdrrec_endofrecord:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdrrec_eof:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdrrec_skiprecord:3:xdr:3: -@:LDP man-pages:3.32:2007/12/30:xdrstdio_create:3:xdr:3: -@:LDP man-pages:3.32:2003/04/04:xencrypt:3:xcrypt:3: -@:LDP man-pages:3.32:2008/07/17:xprt_register:3:rpc:3: -@:LDP man-pages:3.32:2008/07/17:xprt_unregister:3:rpc:3: -○:LDP man-pages:3.32:2008/08/10:y0:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/08/10:y0f:3:y0:3: -@:LDP man-pages:3.32:2008/08/10:y0l:3:y0:3: -@:LDP man-pages:3.32:2008/08/10:y1:3:y0:3: -@:LDP man-pages:3.32:2008/08/10:y1f:3:y0:3: -@:LDP man-pages:3.32:2008/08/10:y1l:3:y0:3: -@:LDP man-pages:3.32:2008/08/10:yn:3:y0:3: -@:LDP man-pages:3.32:2008/08/10:ynf:3:y0:3: -@:LDP man-pages:3.32:2008/08/10:ynl:3:y0:3: -○:LDP man-pages:3.32:1994/10/31:console:4:2002/01/14:o:argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2008/01/01:console_codes:4:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2009/02/28:console_ioctl:4:2008/07/22::argrath@ub32.org:Kentaro Shirakata: -×:LDP man-pages:3.32:2009/03/31:cpuid:4::::: -○:LDP man-pages:3.32:2000/03/01:dsp56k:4:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: -@:LDP man-pages:3.32:2009/02/01:epoll:4:epoll:7: -○:LDP man-pages:3.32:2010/08/29:fd:4:1998/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -@:LDP man-pages:3.32:2008/12/03:fifo:4:fifo:7: -○:LDP man-pages:3.32:1997/08/02:full:4:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2002/12/31:futex:4:futex:7: -○:LDP man-pages:3.32:1992/12/17:hd:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.32:2010/09/04:initrd:4:2005/10/09:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/10/23:intro:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -@:LDP man-pages:3.32:1992/11/21:kmem:4:mem:4: -○:LDP man-pages:3.32:1995/01/15:lp:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.32:1992/11/21:mem:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.32:1996/02/10:mouse:4:1999/03/24:o:ss236rx@ymg.urban.ne.jp:Shouichi Saito: -×:LDP man-pages:3.32:2009/03/31:msr:4::::: -○:LDP man-pages:3.32:2009/02/23:null:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -@:LDP man-pages:3.32:1992/11/21:port:4:mem:4: -@:LDP man-pages:3.32:2002/10/09:ptmx:4:pts:4: -○:LDP man-pages:3.32:2002/10/09:pts:4:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:1992/11/21:ram:4:1997/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.32:2010/08/29:random:4:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/02/25:rtc:4:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:1992/12/17:sd:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.32:2007/11/25:sk98lin:4:2007/06/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/04:st:4:2005/06/12::nakano@st.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2003/04/07:tty:4:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:1992/12/19:ttyS:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -○:LDP man-pages:3.32:2008/10/29:tty_ioctl:4:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2010/08/29:urandom:4:random:4: -○:LDP man-pages:3.32:2007/12/17:vcs:4:2001/02/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: -@:LDP man-pages:3.32:2007/12/17:vcsa:4:vcs:4: -○:LDP man-pages:3.32:1996/10/22:wavelan:4:1998/02/10::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: -@:LDP man-pages:3.32:2009/02/23:zero:4:null:4: -○:LDP man-pages:3.32:2008/06/15:acct:5:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:1994/11/28:charmap:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2009/07/25:complex:5:complex:7: -☆:LDP man-pages:3.31=>3.32:2010/11/15:core:5:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2001/12/26:dir_colors:5:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: -☆:LDP man-pages:3.24=>3.32:2010/06/19:elf:5:2005/11/03::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:2009/07/25:environ:5:environ:7: -☆:LDP man-pages:3.24=>3.32:2010/05/24:filesystems:5:2008/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2010/05/24:fs:5:filesystems:5: -○:LDP man-pages:3.32:2000/08/27:ftpusers:5:2001/03/12::nakano@apm.seikei.ac.jp:NAKANO Takeo: -☆:LDP man-pages:3.29=>3.32:2010/10/21:group:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2003/08/23:host.conf:5:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2002/06/16:hosts:5:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2003/08/24:hosts.equiv:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/10/23:intro:5:1998/10/13::nakano@apm.seikei.ac.jp:NAKANO Takeo: -@:LDP man-pages:3.32:2009/01/26:ipc:5:svipc:7: -○:LDP man-pages:3.32:1993/07/24:issue:5:1998/07/25::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2008/06/17:locale:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:1992/12/29:motd:5:1998/2/4::nagoya@cc.hit-u.ac.jp:Hiroaki Nagoya: -×:LDP man-pages:3.32:2008/09/04:networks:5::::: -○:LDP man-pages:3.32:1992/12/29:nologin:5:1998/02/18::rui@linux.or.jp:Ueyama Rui: -○:LDP man-pages:3.32:1999/10/01:nscd.conf:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:1999/01/17:nsswitch.conf:5:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -※:LDP man-pages:3.32:2008/08/15:numa_maps:5:numa:7: -☆:LDP man-pages:3.29=>3.32:2010/10/21:passwd:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.32:2010/10/30:proc:5:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/09/23:protocols:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2009/03/01:resolv.conf:5:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2009/03/01:resolver:5:resolv.conf:5: -○:LDP man-pages:3.32:1985/09/26:rpc:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:1992/12/29:securetty:5:2003/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/05/22:services:5:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro Motoki: -○:LDP man-pages:3.32:1993/11/21:shells:5:2000/12/11::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2001/06/19:slabinfo:5:2001/09/10::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:1996/10/21:termcap:5:2000/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:1993/07/24:ttytype:5:1998/02/10::nakano@apm.seikei.ac.jp:NAKANO Takeo: -☆:LDP man-pages:3.25=>3.32:2010/08/31:tzfile:5:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2008/10/10:utmp:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2008/10/10:utmpx:5:utmp:5: -@:LDP man-pages:3.32:2008/10/10:wtmp:5:utmp:5: -○:LDP man-pages:3.32:2007/10/23:intro:6:1997/11/15::pessi@kmc.kyoto-u.ac.jp:II Ryouta: -×:LDP man-pages:3.32:2010/10/02:aio:7::::: -×:LDP man-pages:3.32:2010/09/20:armscii-8:7::::: -○:LDP man-pages:3.32:2008/11/25:arp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/02/12:ascii:7:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/19:boot:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/12/16:bootparam:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/06/19:capabilities:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/06/03:charsets:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2009/07/25:complex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2010/09/20:cp1251:7::::: -×:LDP man-pages:3.32:2008/11/12:cpuset:7::::: -○:LDP man-pages:3.32:2008/06/03:credentials:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/11/20:ddp:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2009/07/25:environ:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/02/01:epoll:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/10:feature_test_macros:7:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/12/03:fifo:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2002/12/31:futex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -※:LDP man-pages:3.32:2009/01/13:glibc:7:libc:7: -○:LDP man-pages:3.32:2003/08/24:glob:7:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2009/03/30:hier:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -×:LDP man-pages:3.32:2010/11/07:hostname:7::::: -○:LDP man-pages:3.32:2010/02/25:icmp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.25=>3.32:2010/11/12:inotify:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:1993/04/23:intro:7:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.25=>3.32:2010/10/24:ip:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/02/28:ipv6:7:2006/01/14::ysato444@yahoo.co.jp:Yuichi SATO: -@:LDP man-pages:3.32:1999/05/31:iso-8859-1:7:iso_8859-1:7: -※:LDP man-pages:3.32:2010/09/20:iso-8859-10:7:iso_8859-10:7: -※:LDP man-pages:3.32:2010/09/20:iso-8859-11:7:iso_8859-11:7: -※:LDP man-pages:3.32:2010/09/20:iso-8859-13:7:iso_8859-13:7: -※:LDP man-pages:3.32:2010/09/20:iso-8859-14:7:iso_8859-14:7: -@:LDP man-pages:3.32:1999/05/31:iso-8859-15:7:iso_8859-15:7: -@:LDP man-pages:3.32:2003/03/05:iso-8859-16:7:iso_8859-16:7: -@:LDP man-pages:3.32:2007/11/25:iso-8859-2:7:iso_8859-2:7: -※:LDP man-pages:3.32:2010/09/20:iso-8859-3:7:iso_8859-3:7: -※:LDP man-pages:3.32:2009/01/24:iso-8859-4:7:iso_8859-4:7: -※:LDP man-pages:3.32:2010/09/20:iso-8859-5:7:iso_8859-5:7: -※:LDP man-pages:3.32:2010/09/20:iso-8859-6:7:iso_8859-6:7: -@:LDP man-pages:3.32:2008/10/30:iso-8859-7:7:iso_8859-7:7: -※:LDP man-pages:3.32:2010/09/20:iso-8859-8:7:iso_8859-8:7: -@:LDP man-pages:3.32:2002/09/24:iso-8859-9:7:iso_8859-9:7: -○:LDP man-pages:3.32:1999/05/31:iso_8859-1:7:2002/09/14::argrath@ub32.org:Kentaro Shirakata: -×:LDP man-pages:3.32:2010/09/20:iso_8859-10:7::::: -×:LDP man-pages:3.32:2010/09/20:iso_8859-11:7::::: -×:LDP man-pages:3.32:2010/09/20:iso_8859-13:7::::: -×:LDP man-pages:3.32:2010/09/20:iso_8859-14:7::::: -○:LDP man-pages:3.32:1999/05/31:iso_8859-15:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -○:LDP man-pages:3.32:2003/03/05:iso_8859-16:7:2003/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/11/25:iso_8859-2:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -×:LDP man-pages:3.32:2010/09/20:iso_8859-3:7::::: -×:LDP man-pages:3.32:2009/01/24:iso_8859-4:7::::: -×:LDP man-pages:3.32:2010/09/20:iso_8859-5:7::::: -×:LDP man-pages:3.32:2010/09/20:iso_8859-6:7::::: -○:LDP man-pages:3.32:2008/10/30:iso_8859-7:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya: -×:LDP man-pages:3.32:2010/09/20:iso_8859-8:7::::: -○:LDP man-pages:3.32:2002/09/24:iso_8859-9:7:2003/01/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:1999/05/31:iso_8859_1:7:iso_8859-1:7: -※:LDP man-pages:3.32:2010/09/20:iso_8859_10:7:iso_8859-10:7: -※:LDP man-pages:3.32:2010/09/20:iso_8859_11:7:iso_8859-11:7: -※:LDP man-pages:3.32:2010/09/20:iso_8859_13:7:iso_8859-13:7: -※:LDP man-pages:3.32:2010/09/20:iso_8859_14:7:iso_8859-14:7: -@:LDP man-pages:3.32:1999/05/31:iso_8859_15:7:iso_8859-15:7: -@:LDP man-pages:3.32:2003/03/05:iso_8859_16:7:iso_8859-16:7: -@:LDP man-pages:3.32:2007/11/25:iso_8859_2:7:iso_8859-2:7: -※:LDP man-pages:3.32:2010/09/20:iso_8859_3:7:iso_8859-3:7: -※:LDP man-pages:3.32:2009/01/24:iso_8859_4:7:iso_8859-4:7: -※:LDP man-pages:3.32:2010/09/20:iso_8859_5:7:iso_8859-5:7: -※:LDP man-pages:3.32:2010/09/20:iso_8859_6:7:iso_8859-6:7: -@:LDP man-pages:3.32:2008/10/30:iso_8859_7:7:iso_8859-7:7: -※:LDP man-pages:3.32:2010/09/20:iso_8859_8:7:iso_8859-8:7: -@:LDP man-pages:3.32:2002/09/24:iso_8859_9:7:iso_8859-9:7: -○:LDP man-pages:3.32:2010/10/24:koi8-r:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: -×:LDP man-pages:3.32:2010/09/20:koi8-u:7::::: -@:LDP man-pages:3.32:1999/05/31:latin1:7:iso_8859-1:7: -@:LDP man-pages:3.32:2003/03/05:latin10:7:iso_8859-16:7: -@:LDP man-pages:3.32:2007/11/25:latin2:7:iso_8859-2:7: -※:LDP man-pages:3.32:2010/09/20:latin3:7:iso_8859-3:7: -※:LDP man-pages:3.32:2009/01/24:latin4:7:iso_8859-4:7: -@:LDP man-pages:3.32:2002/09/24:latin5:7:iso_8859-9:7: -※:LDP man-pages:3.32:2010/09/20:latin6:7:iso_8859-10:7: -※:LDP man-pages:3.32:2010/09/20:latin7:7:iso_8859-13:7: -※:LDP man-pages:3.32:2010/09/20:latin8:7:iso_8859-14:7: -@:LDP man-pages:3.32:1999/05/31:latin9:7:iso_8859-15:7: -×:LDP man-pages:3.32:2009/01/13:libc:7::::: -○:LDP man-pages:3.32:2008/12/05:locale:7:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2004/09/15:mailaddr:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/05/30:man:7:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/10/28:man-pages:7:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/08/11:math_error:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:0000/00/00:mdoc:7:2008/10/08::argrath@ub32.org:Kentaro Shirakata: -C:LDP man-pages:3.32:0000/00/00:mdoc.samples:7:1999/01/21::man-jp@freebsd.org:FreeBSD jpman project:http://www.jp.freebsd.org/man-jp/ -○:LDP man-pages:3.32:2009/09/27:mq_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/01/14:netdevice:7:2009/03/05::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2008/11/11:netlink:7:2006/07/12::ysato444@yahoo.co.jp:Yuichi SATO: -×:LDP man-pages:3.32:2008/08/15:numa:7::::: -○:LDP man-pages:3.32:2004/08/24:operator:7:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO: -○:LDP man-pages:3.32:2008/08/08:packet:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/12/05:path_resolution:7:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2005/12/08:pipe:7:2005/12/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2007/12/21:posixoptions:7:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: -☆:LDP man-pages:3.31=>3.32:2010/11/14:pthreads:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2005/10/10:pty:7:2005/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/11/20:raw:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/01/12:regex:7:1998/07/08::nakano@apm.seikei.ac.jp:NAKANO Takeo: -×:LDP man-pages:3.32:2010/09/10:rtld-audit:7::::: -○:LDP man-pages:3.32:2008/08/08:rtnetlink:7:2001/03/11::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:2010/05/22:sem_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/09/10:shm_overview:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2010/10/04:sigevent:7::::: -☆:LDP man-pages:3.31=>3.32:2010/09/19:signal:7:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:3.24=>3.32:2010/06/13:socket:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -☆:LDP man-pages:2.67=>3.32:2007/12/20:spufs:7:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/06/01:standards:7:2006/08/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2000/11/16:suffixes:7:2001/04/24::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.32:2009/01/26:svipc:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -×:LDP man-pages:3.32:2008/06/18:symlink:7::::: -☆:LDP man-pages:3.25=>3.32:2010/09/10:tcp:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2006/12/28:termio:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2010/02/25:time:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -※:LDP man-pages:3.32:2010/09/20:tis-620:7:iso_8859-11:7: -☆:LDP man-pages:3.24=>3.32:2010/06/13:udp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2008/12/03:udplite:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2001/05/11:unicode:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.32:2001/12/22:units:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -☆:LDP man-pages:3.25=>3.32:2010/11/15:unix:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2000/03/14:uri:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata: -@:LDP man-pages:3.32:2000/03/14:url:7:uri:7: -@:LDP man-pages:3.32:2000/03/14:urn:7:uri:7: -○:LDP man-pages:3.32:2001/05/11:utf-8:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: -@:LDP man-pages:3.32:2001/05/11:utf8:7:utf-8:7: -○:LDP man-pages:3.32:2008/08/08:x25:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2007/10/23:intro:8:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -@:LDP man-pages:3.32:2009/01/12:ld-linux:8:ld.so:8: -@:LDP man-pages:3.32:2009/01/12:ld-linux.so:8:ld.so:8: -○:LDP man-pages:3.32:2009/01/12:ld.so:8:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: -○:LDP man-pages:3.32:2009/04/15:ldconfig:8:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO:The ancestor is in ld.so. -○:LDP man-pages:3.32:2008/12/05:nscd:8:2009/03/14::argrath@ub32.org:Kentaro Shirakata: -○:LDP man-pages:3.32:1998/11/01:sync:8:2000/06/13::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: -○:LDP man-pages:3.32:2007/05/18:tzselect:8:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: -○:LDP man-pages:3.32:0000/00/00:zdump:8:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: -○:LDP man-pages:3.32:2010/02/25:zic:8:2001/04/04::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +○:LDP man-pages:3.34:2007/11/15:intro:1:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2000/10/30:ldd:1:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.34:2008/11/14:time:1:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:_Exit:2:_exit:2: +@:LDP man-pages:3.34:2011/09/08:__clone2:2:clone:2: +○:LDP man-pages:3.34:2010/09/20:_exit:2:2001/12/14::ysato@h4.dion.ne.jp:Yuichi SATO: +@:LDP man-pages:3.34:1995/06/10:_llseek:2:llseek:2: +@:LDP man-pages:3.34:2010/08/31:_newselect:2:select:2: +○:LDP man-pages:3.34:2007/12/19:_syscall:2:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/11/20:_sysctl:2:sysctl:2: +○:LDP man-pages:3.34:2010/09/10:accept:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/10:accept4:2:accept:2: +☆:LDP man-pages:3.29=>3.34:2010/10/24:access:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/06/16:acct:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +×:LDP man-pages:3.34:2010/02/25:add_key:2::::: +○:LDP man-pages:3.34:2004/05/27:adjtimex:2:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/07/05:afs_syscall:2:unimplemented:2: +○:LDP man-pages:3.34:2008/06/12:alarm:2:1997/02/22::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:2007/05/31:alloc_hugepages:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/12/26:arch_prctl:2:2005/11/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/10/09:arm_fadvise:2:posix_fadvise:2: +@:LDP man-pages:3.34:2010/10/09:arm_fadvise64_64:2:posix_fadvise:2: +@:LDP man-pages:3.34:2010/10/09:arm_sync_file_range:2:sync_file_range:2: +○:LDP man-pages:3.34:2004/06/17:bdflush:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2007/12/28:bind:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/07/05:break:2:unimplemented:2: +○:LDP man-pages:3.34:2010/09/20:brk:2:2007/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/05/26:cacheflush:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:capget:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:capset:2:capget:2: +☆:LDP man-pages:3.31=>3.34:2010/11/25:chdir:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2010/09/26:chmod:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.31=>3.34:2010/11/22:chown:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/11/22:chown32:2:chown:2: +○:LDP man-pages:3.34:2010/09/20:chroot:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.32=>3.34:2010/02/03:clock_getres:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/02/03:clock_gettime:2:clock_getres:2: +☆:LDP man-pages:3.31=>3.34:2010/12/03:clock_nanosleep:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/02/03:clock_settime:2:clock_getres:2: +☆:LDP man-pages:3.32=>3.34:2011/09/08:clone:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/08:clone2:2:clone:2: +○:LDP man-pages:3.34:2007/12/28:close:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/12/03:connect:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/08:creat:2:open:2: +○:LDP man-pages:3.34:2007/06/03:create_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:0000/00/00:delete_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/10:dup:2:2005/09/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/10:dup2:2:dup:2: +@:LDP man-pages:3.34:2010/09/10:dup3:2:dup:2: +☆:LDP man-pages:3.31=>3.34:2010/12/03:epoll_create:2:2009/03/14::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2010/12/03:epoll_create1:2:epoll_create:2: +☆:LDP man-pages:3.31=>3.34:2010/12/03:epoll_ctl:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/12/03:epoll_pwait:2:epoll_wait:2: +☆:LDP man-pages:3.31=>3.34:2010/12/03:epoll_wait:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.25=>3.34:2010/08/30:eventfd:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/08/30:eventfd2:2:eventfd:2: +☆:LDP man-pages:3.32=>3.34:2011/09/14:execve:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:exit:2:_exit:2: +○:LDP man-pages:3.34:2008/11/27:exit_group:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.29=>3.34:2010/10/24:faccessat:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/10/09:fadvise64:2:posix_fadvise:2: +@:LDP man-pages:3.34:2010/10/09:fadvise64_64:2:posix_fadvise:2: +☆:LDP man-pages:3.32=>3.34:2011/09/19:fallocate:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/11/25:fchdir:2:chdir:2: +@:LDP man-pages:3.34:2010/09/26:fchmod:2:chmod:2: +○:LDP man-pages:3.34:2009/12/13:fchmodat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/11/22:fchown:2:chown:2: +@:LDP man-pages:3.34:2010/11/22:fchown32:2:fchown:2: +○:LDP man-pages:3.34:2009/12/13:fchownat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.24=>3.34:2011/09/15:fcntl:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/15:fcntl64:2:fcntl:2: +@:LDP man-pages:3.34:2008/11/07:fdatasync:2:fsync:2: +@:LDP man-pages:3.34:2001/12/01:fgetxattr:2:getxattr:2: +@:LDP man-pages:3.34:2001/12/01:flistxattr:2:listxattr:2: +○:LDP man-pages:3.34:2009/07/25:flock:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/04/27:fork:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/05/31:free_hugepages:2:alloc_hugepages:2: +@:LDP man-pages:3.34:2001/12/01:fremovexattr:2:removexattr:2: +@:LDP man-pages:3.34:2001/12/31:fsetxattr:2:setxattr:2: +@:LDP man-pages:3.34:2010/12/03:fstat:2:stat:2: +@:LDP man-pages:3.34:2010/12/03:fstat64:2:fstat:2: +☆:LDP man-pages:3.31=>3.34:2011/09/19:fstatat:2:2006/12/28::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2011/09/19:fstatat64:2:fstatat:2: +@:LDP man-pages:3.34:2010/11/21:fstatfs:2:statfs:2: +@:LDP man-pages:3.34:2010/11/21:fstatfs64:2:fstatfs:2: +@:LDP man-pages:3.34:2003/08/22:fstatvfs:2:statvfs:3: +○:LDP man-pages:3.34:2008/11/07:fsync:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/08:ftruncate:2:truncate:2: +@:LDP man-pages:3.34:2011/09/08:ftruncate64:2:ftruncate:2: +○:LDP man-pages:3.34:2010/08/29:futex:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2009/12/13:futimesat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:0000/00/00:get_kernel_syms:2:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2008/08/15:get_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/11/27:get_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/03/15:getcontext:2:2001/12/15::nakano@apm.seikei.ac.jp:NAKANO Takeo: +×:LDP man-pages:3.34:2008/06/03:getcpu:2::::: +@:LDP man-pages:3.34:2010/09/20:getcwd:2:getcwd:3: +☆:LDP man-pages:3.31=>3.34:2010/11/21:getdents:2:2009/03/05::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2010/11/21:getdents64:2:getdents:2: +○:LDP man-pages:3.34:2009/09/27:getdomainname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:getdtablesize:2:2007/01/14::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2010/11/22:getegid:2:getgid:2: +@:LDP man-pages:3.34:2010/11/22:getegid32:2:getegid:2: +@:LDP man-pages:3.34:2010/11/22:geteuid:2:getuid:2: +@:LDP man-pages:3.34:2010/11/22:geteuid32:2:geteuid:2: +☆:LDP man-pages:3.31=>3.34:2010/11/22:getgid:2:1997/06/26::suto@av.crl.sony.co.jp:SUTO, Mitsuaki: +@:LDP man-pages:3.34:2010/11/22:getgid32:2:getgid:2: +☆:LDP man-pages:3.31=>3.34:2010/11/22:getgroups:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/11/22:getgroups32:2:getgroups:2: +@:LDP man-pages:3.34:2010/09/20:gethostid:2:gethostid:3: +○:LDP man-pages:3.34:2010/09/26:gethostname:2:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/03/15:getitimer:2:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.31=>3.34:2010/11/16:getpagesize:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/12/03:getpeername:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/26:getpgid:2:setpgid:2: +@:LDP man-pages:3.34:2010/09/26:getpgrp:2:setpgid:2: +○:LDP man-pages:3.34:2008/09/23:getpid:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki: +@:LDP man-pages:3.34:2007/07/05:getpmsg:2:unimplemented:2: +@:LDP man-pages:3.34:2008/09/23:getppid:2:getpid:2: +○:LDP man-pages:3.34:2008/05/29:getpriority:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/11/22:getresgid:2:getresuid:2: +@:LDP man-pages:3.34:2010/11/22:getresgid32:2:getresgid:2: +☆:LDP man-pages:3.31=>3.34:2010/11/22:getresuid:2:2003/11/13::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2010/11/22:getresuid32:2:getresuid:2: +☆:LDP man-pages:3.30=>3.34:2011/09/10:getrlimit:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.34:2010/09/26:getrusage:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/26:getsid:2:2002/02/03::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2008/12/03:getsockname:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2008/12/03:getsockopt:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2008/04/14:gettid:2:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/03/25:gettimeofday:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.31=>3.34:2010/11/22:getuid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/11/22:getuid32:2:getuid:2: +○:LDP man-pages:3.34:2001/12/01:getxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/07/05:gtty:2:unimplemented:2: +○:LDP man-pages:3.34:1994/08/21:idle:2:2000/01/14::argrath@yo.rim.or.jp:Kentaro Shirakata: +@:LDP man-pages:3.34:1995/11/29:inb:2:outb:2: +@:LDP man-pages:3.34:1995/11/29:inb_p:2:outb:2: +○:LDP man-pages:3.34:0000/00/00:init_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:1995/11/29:inl:2:outb:2: +@:LDP man-pages:3.34:1995/11/29:inl_p:2:outb:2: +☆:LDP man-pages:3.29=>3.34:2010/10/20:inotify_add_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/10/10:inotify_init:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/10/10:inotify_init1:2:inotify_init:2: +○:LDP man-pages:3.34:2010/10/15:inotify_rm_watch:2:2006/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:1995/11/29:insb:2:outb:2: +@:LDP man-pages:3.34:1995/11/29:insl:2:outb:2: +@:LDP man-pages:3.34:1995/11/29:insw:2:outb:2: +○:LDP man-pages:3.34:2010/11/11:intro:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:1995/11/29:inw:2:outb:2: +@:LDP man-pages:3.34:1995/11/29:inw_p:2:outb:2: +○:LDP man-pages:3.34:2008/06/18:io_cancel:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/06/18:io_destroy:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/07/04:io_getevents:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/06/18:io_setup:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/06/18:io_submit:2:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2000/09/21:ioctl:2:2011/09/15::tati@kc5.so-net.ne.jp:TACHIBANA Akira: +○:LDP man-pages:3.34:2007/12/29:ioctl_list:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2007/06/15:ioperm:2:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2004/12/26:iopl:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/07/09:ioprio_get:2:ioprio_set:2: +○:LDP man-pages:3.34:2008/07/09:ioprio_set:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/06/28:ipc:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +×:LDP man-pages:3.34:2010/11/04:kexec_load:2::::: +×:LDP man-pages:3.34:2010/02/25:keyctl:2::::: +☆:LDP man-pages:3.32=>3.34:2009/09/15:kill:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:killpg:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/11/22:lchown:2:chown:2: +@:LDP man-pages:3.34:2010/11/22:lchown32:2:lchown:2: +@:LDP man-pages:3.34:2001/12/01:lgetxattr:2:getxattr:2: +○:LDP man-pages:3.34:2008/08/21:link:2:2005/05/12::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.32=>3.34:2009/12/13:linkat:2:2007/01/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/11/20:listen:2:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2001/12/01:listxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2001/12/01:llistxattr:2:listxattr:2: +○:LDP man-pages:3.34:1995/06/10:llseek:2:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2007/07/05:lock:2:unimplemented:2: +○:LDP man-pages:3.34:2004/06/17:lookup_dcookie:2:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2001/12/01:lremovexattr:2:removexattr:2: +☆:LDP man-pages:3.32=>3.34:2011/09/20:lseek:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2001/12/31:lsetxattr:2:setxattr:2: +@:LDP man-pages:3.34:2010/12/03:lstat:2:stat:2: +@:LDP man-pages:3.34:2010/12/03:lstat64:2:lstat:2: +☆:LDP man-pages:3.24=>3.34:2011/09/18:madvise:2:2007/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/07/05:madvise1:2:unimplemented:2: +○:LDP man-pages:3.34:2008/08/15:mbind:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2010/11/01:migrate_pages:2::::: +○:LDP man-pages:3.34:2008/04/22:mincore:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.25=>3.34:2010/06/26:mkdir:2:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2009/12/13:mkdirat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2010/09/20:mknod:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:mknodat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.24=>3.34:2011/09/14:mlock:2:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/14:mlockall:2:mlock:2: +☆:LDP man-pages:3.24=>3.34:2010/06/20:mmap:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/04/22:mmap2:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/06/01:modify_ldt:2:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/10:mount:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/06/11:move_pages:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2011/09/08:mprotect:2:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/07/05:mpx:2:unimplemented:2: +○:LDP man-pages:3.34:2010/08/29:mq_getsetattr:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/10/04:mq_notify:2:mq_notify:3: +@:LDP man-pages:3.34:2009/02/20:mq_open:2:mq_open:3: +@:LDP man-pages:3.34:2010/09/20:mq_timedreceive:2:mq_receive:3: +@:LDP man-pages:3.34:2010/09/20:mq_timedsend:2:mq_send:3: +@:LDP man-pages:3.34:2010/08/29:mq_unlink:2:mq_unlink:3: +○:LDP man-pages:3.34:2010/06/10:mremap:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/08/06:msgctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2004/05/27:msgget:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/04/23:msgop:2:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/04/23:msgrcv:2:msgop:2: +@:LDP man-pages:3.34:2008/04/23:msgsnd:2:msgop:2: +○:LDP man-pages:3.34:2008/04/22:msync:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2011/09/14:munlock:2:mlock:2: +@:LDP man-pages:3.34:2011/09/14:munlockall:2:mlock:2: +@:LDP man-pages:3.34:2010/06/20:munmap:2:mmap:2: +○:LDP man-pages:3.34:2009/01/19:nanosleep:2:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:1997/07/16:nfsservctl:2:1997/08/30::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:2007/07/26:nice:2:2005/10/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/12/03:oldfstat:2:stat:2: +@:LDP man-pages:3.34:2010/12/03:oldlstat:2:stat:2: +@:LDP man-pages:3.34:2008/12/03:oldolduname:2:uname:2: +@:LDP man-pages:3.34:2010/12/03:oldstat:2:stat:2: +@:LDP man-pages:3.34:2008/12/03:olduname:2:uname:2: +☆:LDP man-pages:3.31=>3.34:2011/09/08:open:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/12/13:openat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:1995/11/29:outb:2:2005/10/30::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:1995/11/29:outb_p:2:outb:2: +@:LDP man-pages:3.34:1995/11/29:outl:2:outb:2: +@:LDP man-pages:3.34:1995/11/29:outl_p:2:outb:2: +@:LDP man-pages:3.34:1995/11/29:outsb:2:outb:2: +@:LDP man-pages:3.34:1995/11/29:outsl:2:outb:2: +@:LDP man-pages:3.34:1995/11/29:outsw:2:outb:2: +@:LDP man-pages:3.34:1995/11/29:outw:2:outb:2: +@:LDP man-pages:3.34:1995/11/29:outw_p:2:outb:2: +@:LDP man-pages:3.34:2009/12/05:path_resolution:2:path_resolution:7: +○:LDP man-pages:3.34:2008/10/06:pause:2:1997/06/27::suto@av.crl.sony.co.jp:SUTO, Mitsuaki: +@:LDP man-pages:3.34:2003/07/14:pciconfig_iobase:2:pciconfig_read:2: +○:LDP man-pages:3.34:2003/07/14:pciconfig_read:2:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2003/07/14:pciconfig_write:2:pciconfig_read:2: +○:LDP man-pages:3.34:2003/01/01:personality:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2010/09/10:pipe:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/10:pipe2:2:pipe:2: +○:LDP man-pages:3.34:2007/06/01:pivot_root:2:2000/06/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +☆:LDP man-pages:3.32=>3.34:2010/09/20:poll:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.34:2010/10/09:posix_fadvise:2:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/09/20:ppoll:2:poll:2: +☆:LDP man-pages:3.24=>3.34:2011/09/17:prctl:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.31=>3.34:2010/11/21:pread:2:1999/06/25::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +@:LDP man-pages:3.34:2010/11/21:pread64:2:pread:2: +@:LDP man-pages:3.34:2010/11/17:preadv:2:readv:2: +@:LDP man-pages:3.34:2011/09/10:prlimit:2:getrlimit:2: +@:LDP man-pages:3.34:2007/07/05:prof:2:unimplemented:2: +@:LDP man-pages:3.34:2010/08/31:pselect:2:select:2: +@:LDP man-pages:3.34:2010/08/31:pselect6:2:select:2: +☆:LDP man-pages:3.32=>3.34:2009/03/30:ptrace:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/07/05:putpmsg:2:unimplemented:2: +@:LDP man-pages:3.34:2010/11/21:pwrite:2:pread:2: +@:LDP man-pages:3.34:2010/11/21:pwrite64:2:pwrite:2: +@:LDP man-pages:3.34:2010/11/17:pwritev:2:readv:2: +○:LDP man-pages:3.34:0000/00/00:query_module:2:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.34:2010/06/16:quotactl:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2009/02/23:read:2:2005/10/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/10:readahead:2:2005/02/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/10/02:readdir:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +☆:LDP man-pages:3.32=>3.34:2011/09/20:readlink:2:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/12/13:readlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.31=>3.34:2010/11/17:readv:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.29=>3.34:2010/10/31:reboot:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +☆:LDP man-pages:3.32=>3.34:2011/09/16:recv:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/16:recvfrom:2:recv:2: +@:LDP man-pages:3.34:2011/09/16:recvmsg:2:recv:2: +○:LDP man-pages:3.34:2008/04/22:remap_file_pages:2:2005/10/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2001/12/01:removexattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/03/30:rename:2:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/12/13:renameat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +×:LDP man-pages:3.34:2010/02/25:request_key:2::::: +○:LDP man-pages:3.34:2008/05/08:rmdir:2:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/08:rt_sigaction:2:sigaction:2: +@:LDP man-pages:3.34:2008/10/04:rt_sigpending:2:sigpending:2: +@:LDP man-pages:3.34:2008/10/17:rt_sigprocmask:2:sigprocmask:2: +×:LDP man-pages:3.34:2011/09/18:rt_sigqueueinfo:2::::: +@:LDP man-pages:3.34:2008/06/26:rt_sigreturn:2:sigreturn:2: +@:LDP man-pages:3.34:2005/09/15:rt_sigsuspend:2:sigsuspend:2: +@:LDP man-pages:3.34:2008/10/04:rt_sigtimedwait:2:sigtimedwait:2: +※:LDP man-pages:3.34:2011/09/18:rt_tgsigqueueinfo:2:rt_sigqueueinfo:2: +@:LDP man-pages:3.34:2010/09/20:sbrk:2:brk:2: +○:LDP man-pages:3.34:2006/03/23:sched_get_priority_max:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2006/03/23:sched_get_priority_min:2:sched_get_priority_max:2: +@:LDP man-pages:3.34:2010/11/06:sched_getaffinity:2:sched_setaffinity:2: +@:LDP man-pages:3.34:2006/03/23:sched_getparam:2:sched_setparam:2: +@:LDP man-pages:3.34:2011/09/19:sched_getscheduler:2:sched_setscheduler:2: +○:LDP man-pages:3.34:2007/04/06:sched_rr_get_interval:2:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/11/06:sched_setaffinity:2:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2006/03/23:sched_setparam:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.34:2011/09/19:sched_setscheduler:2:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/10/18:sched_yield:2:1997/02/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +@:LDP man-pages:3.34:2007/07/05:security:2:unimplemented:2: +○:LDP man-pages:3.34:2010/08/31:select:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/06/10:select_tut:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/09/27:semctl:2:2005/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2004/05/27:semget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/10/04:semop:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/10/04:semtimedop:2:semop:2: +○:LDP man-pages:3.34:2010/08/29:send:2:2006/04/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.31=>3.34:2011/09/14:sendfile:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/14:sendfile64:2:sendfile:2: +@:LDP man-pages:3.34:2010/08/29:sendmsg:2:send:2: +@:LDP man-pages:3.34:2010/08/29:sendto:2:send:2: +☆:LDP man-pages:3.32=>3.34:2008/08/15:set_mempolicy:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/11/27:set_thread_area:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2004/09/10:set_tid_address:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2009/03/15:setcontext:2:getcontext:2: +@:LDP man-pages:3.34:2009/09/27:setdomainname:2:getdomainname:2: +@:LDP man-pages:3.34:2009/10/17:setegid:2:seteuid:2: +○:LDP man-pages:3.34:2009/10/17:seteuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.31=>3.34:2010/11/22:setfsgid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/11/22:setfsgid32:2:setfsgid:2: +☆:LDP man-pages:3.31=>3.34:2010/11/22:setfsuid:2:2005/02/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/11/22:setfsuid32:2:setfsuid:2: +☆:LDP man-pages:3.31=>3.34:2010/11/22:setgid:2:2003/02/14::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2010/11/22:setgid32:2:setgid:2: +@:LDP man-pages:3.34:2010/11/22:setgroups:2:getgroups:2: +@:LDP man-pages:3.34:2010/11/22:setgroups32:2:setgroups:2: +@:LDP man-pages:3.34:2010/09/20:sethostid:2:gethostid:3: +@:LDP man-pages:3.34:2010/09/26:sethostname:2:gethostname:2: +@:LDP man-pages:3.34:2009/03/15:setitimer:2:getitimer:2: +○:LDP man-pages:3.34:2010/09/26:setpgid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/26:setpgrp:2:setpgid:2: +@:LDP man-pages:3.34:2008/05/29:setpriority:2:getpriority:2: +@:LDP man-pages:3.34:2010/11/22:setregid:2:setreuid:2: +@:LDP man-pages:3.34:2010/11/22:setregid32:2:setregid:2: +@:LDP man-pages:3.34:2010/11/22:setresgid:2:setresuid:2: +@:LDP man-pages:3.34:2010/11/22:setresgid32:2:setresgid:2: +☆:LDP man-pages:3.31=>3.34:2010/11/22:setresuid:2:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/11/22:setresuid32:2:setresuid:2: +☆:LDP man-pages:3.31=>3.34:2010/11/22:setreuid:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/11/22:setreuid32:2:setreuid:2: +@:LDP man-pages:3.34:2011/09/10:setrlimit:2:getrlimit:2: +○:LDP man-pages:3.34:2008/12/03:setsid:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2008/12/03:setsockopt:2:getsockopt:2: +@:LDP man-pages:3.34:2009/03/25:settimeofday:2:gettimeofday:2: +☆:LDP man-pages:3.31=>3.34:2010/11/22:setuid:2:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/11/22:setuid32:2:setuid:2: +○:LDP man-pages:3.34:2008/12/03:setup:2:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2001/12/31:setxattr:2:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/07/05:sgetmask:2:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/06/03:shmat:2:shmop:2: +○:LDP man-pages:3.34:2008/08/07:shmctl:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/06/03:shmdt:2:shmop:2: +○:LDP man-pages:3.34:2006/05/02:shmget:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/06/03:shmop:2:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/12/03:shutdown:2:2001/11/09::argrath@ub32.org:Kentaro Shirakata: +☆:LDP man-pages:3.24=>3.34:2011/09/08:sigaction:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/26:sigaltstack:2:2006/01/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2008/07/11:signal:2:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2009/01/13:signalfd:2:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2009/01/13:signalfd4:2:signalfd:2: +○:LDP man-pages:3.34:2008/10/04:sigpending:2:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2008/10/17:sigprocmask:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +※:LDP man-pages:3.34:2011/09/18:sigqueue:2:sigqueue:3: +○:LDP man-pages:3.34:2008/06/26:sigreturn:2:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2005/09/15:sigsuspend:2:2005/10/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/10/04:sigtimedwait:2:sigwaitinfo:2: +☆:LDP man-pages:3.32=>3.34:2008/10/04:sigwaitinfo:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/01/19:socket:2:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/06/28:socketcall:2:1997/03/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:2008/10/11:socketpair:2:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/09/15:splice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:2.67=>3.34:2007/12/20:spu_create:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2007/11/25:spu_run:2:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/07/05:ssetmask:2:sgetmask:2: +☆:LDP man-pages:3.25=>3.34:2010/12/03:stat:2:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/12/03:stat64:2:stat:2: +☆:LDP man-pages:3.31=>3.34:2010/11/21:statfs:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/11/21:statfs64:2:statfs:2: +@:LDP man-pages:3.34:2003/08/22:statvfs:2:statvfs:3: +○:LDP man-pages:3.34:2010/02/25:stime:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2007/07/05:stty:2:unimplemented:2: +×:LDP man-pages:3.34:2010/10/30:subpage_prot:2::::: +@:LDP man-pages:3.34:2010/11/15:swapoff:2:swapon:2: +☆:LDP man-pages:3.31=>3.34:2010/11/15:swapon:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2010/09/20:symlink:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2009/12/13:symlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.32=>3.34:2011/09/07:sync:2:2003/09/14::argrath@ub32.org:Kentaro Shirakata: +☆:LDP man-pages:3.24=>3.34:2010/10/09:sync_file_range:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/10/09:sync_file_range2:2:sync_file_range:2: +@:LDP man-pages:3.34:2011/09/07:syncfs:2:sync:2: +○:LDP man-pages:3.34:2007/07/26:syscall:2:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO: +☆:LDP man-pages:3.32=>3.34:2011/09/07:syscalls:2:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/11/20:sysctl:2:1999/12/03::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:2010/06/27:sysfs:2:2001/06/02::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.34:2007/11/15:sysinfo:2:2000/09/23::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +☆:LDP man-pages:3.32=>3.34:2011/09/07:syslog:2:2008/04/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2009/09/15:tee:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/18:tgkill:2:tkill:2: +☆:LDP man-pages:3.32=>3.34:2011/09/09:time:2:1999/07/27::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +×:LDP man-pages:3.34:2010/09/27:timer_create:2::::: +×:LDP man-pages:3.34:2009/02/20:timer_delete:2::::: +×:LDP man-pages:3.34:2009/02/20:timer_getoverrun:2::::: +※:LDP man-pages:3.34:2009/02/20:timer_gettime:2:timer_settime:2: +×:LDP man-pages:3.34:2009/02/20:timer_settime:2::::: +☆:LDP man-pages:3.32=>3.34:2011/09/14:timerfd_create:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/14:timerfd_gettime:2:timerfd_create:2: +@:LDP man-pages:3.34:2011/09/14:timerfd_settime:2:timerfd_create:2: +○:LDP man-pages:3.34:2008/06/25:times:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2011/09/18:tkill:2:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.31=>3.34:2011/09/08:truncate:2:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/08:truncate64:2:truncate:2: +@:LDP man-pages:3.34:2007/07/05:tuxcall:2:unimplemented:2: +@:LDP man-pages:3.34:2011/09/10:ugetrlimit:2:getrlimit:2: +○:LDP man-pages:3.34:2008/01/09:umask:2:2008/02/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.34:2010/06/19:umount:2:2008/11/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/06/19:umount2:2:umount:2: +○:LDP man-pages:3.34:2008/12/03:uname:2:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.34:2007/07/05:unimplemented:2:2003/03/06::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +☆:LDP man-pages:3.32=>3.34:2011/09/15:unlink:2:2006/04/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/12/13:unlinkat:2:2006/10/13::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.29=>3.34:2010/10/30:unshare:2:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2005/01/09:uselib:2:2005/04/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2003/08/04:ustat:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2008/08/06:utime:2:2006/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2009/12/13:utimensat:2::::: +@:LDP man-pages:3.34:2008/08/06:utimes:2:utime:2: +○:LDP man-pages:3.34:2010/09/20:vfork:2:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/07/26:vhangup:2:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2009/02/20:vm86:2:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2009/02/20:vm86old:2:vm86:2: +○:LDP man-pages:3.34:2009/09/15:vmsplice:2:2007/02/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/07/05:vserver:2:unimplemented:2: +○:LDP man-pages:3.34:2010/09/26:wait:2:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:wait3:2:wait4:2: +○:LDP man-pages:3.34:2010/09/20:wait4:2:2005/03/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/26:waitid:2:wait:2: +@:LDP man-pages:3.34:2010/09/26:waitpid:2:wait:2: +○:LDP man-pages:3.34:2010/08/29:write:2:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/11/17:writev:2:readv:2: +@:LDP man-pages:3.34:2008/11/20:CMSG_ALIGN:3:cmsg:3: +@:LDP man-pages:3.34:2008/11/20:CMSG_FIRSTHDR:3:cmsg:3: +@:LDP man-pages:3.34:2008/11/20:CMSG_NXTHDR:3:cmsg:3: +@:LDP man-pages:3.34:2008/11/20:CMSG_SPACE:3:cmsg:3: +※:LDP man-pages:3.34:2010/09/10:CPU_ALLOC:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_ALLOC_SIZE:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_AND:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_AND_S:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_CLR:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_CLR_S:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_COUNT:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_COUNT_S:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_EQUAL:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_EQUAL_S:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_FREE:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_ISSET:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_ISSET_S:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_OR:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_OR_S:3:CPU_SET:3: +×:LDP man-pages:3.34:2010/09/10:CPU_SET:3::::: +※:LDP man-pages:3.34:2010/09/10:CPU_SET_S:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_XOR:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_XOR_S:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_ZERO:3:CPU_SET:3: +※:LDP man-pages:3.34:2010/09/10:CPU_ZERO_S:3:CPU_SET:3: +@:LDP man-pages:3.34:2010/08/31:FD_CLR:3:select:2: +@:LDP man-pages:3.34:2010/08/31:FD_ISSET:3:select:2: +@:LDP man-pages:3.34:2010/08/31:FD_SET:3:select:2: +@:LDP man-pages:3.34:2010/08/31:FD_ZERO:3:select:2: +@:LDP man-pages:3.34:2007/07/26:HUGE_VAL:3:INFINITY:3: +@:LDP man-pages:3.34:2007/07/26:HUGE_VALF:3:INFINITY:3: +@:LDP man-pages:3.34:2007/07/26:HUGE_VALL:3:INFINITY:3: +○:LDP man-pages:3.34:2007/07/26:INFINITY:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:1999/07/04:MB_CUR_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi: +○:LDP man-pages:3.34:1999/07/04:MB_LEN_MAX:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi: +@:LDP man-pages:3.34:2007/07/26:NAN:3:INFINITY:3: +@:LDP man-pages:3.34:2001/12/16:__fbufsize:3:stdio_ext:3: +@:LDP man-pages:3.34:2001/12/16:__flbf:3:stdio_ext:3: +@:LDP man-pages:3.34:2001/12/16:__fpending:3:stdio_ext:3: +@:LDP man-pages:3.34:2001/12/15:__fpurge:3:fpurge:3: +@:LDP man-pages:3.34:2001/12/16:__freadable:3:stdio_ext:3: +@:LDP man-pages:3.34:2001/12/16:__freading:3:stdio_ext:3: +@:LDP man-pages:3.34:2001/12/16:__fsetlocking:3:stdio_ext:3: +@:LDP man-pages:3.34:2001/12/16:__fwritable:3:stdio_ext:3: +@:LDP man-pages:3.34:2001/12/16:__fwriting:3:stdio_ext:3: +@:LDP man-pages:3.34:2010/10/13:__malloc_hook:3:malloc_hook:3: +○:LDP man-pages:3.34:1997/03/08:__setfpucw:3:2000/09/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: +@:LDP man-pages:3.34:2001/12/16:_flushlbf:3:stdio_ext:3: +○:LDP man-pages:3.34:2010/09/20:a64l:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2007/12/15:abort:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +○:LDP man-pages:3.34:2010/09/20:abs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2010/09/20:acos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:acosf:3:acos:3: +○:LDP man-pages:3.34:2010/09/20:acosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:acoshf:3:acosh:3: +@:LDP man-pages:3.34:2010/09/20:acoshl:3:acosh:3: +@:LDP man-pages:3.34:2010/09/20:acosl:3:acos:3: +@:LDP man-pages:3.34:2009/09/15:addmntent:3:getmntent:3: +○:LDP man-pages:3.34:2008/06/14:addseverity:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2008/06/22:adjtime:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.25=>3.34:2010/10/03:aio_cancel:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.25=>3.34:2010/10/03:aio_error:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.25=>3.34:2010/10/02:aio_fsync:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +×:LDP man-pages:3.34:2010/10/06:aio_init:3::::: +☆:LDP man-pages:3.25=>3.34:2010/10/03:aio_read:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.25=>3.34:2010/10/03:aio_return:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.25=>3.34:2010/10/02:aio_suspend:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.25=>3.34:2010/10/02:aio_write:3:2004/07/18::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2008/01/24:alloca:3:2002/09/19::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2011/09/08:alphasort:3:scandir:3: +@:LDP man-pages:3.34:2007/05/18:argz:3:argz_add:3: +○:LDP man-pages:3.34:2007/05/18:argz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/05/18:argz_add_sep:3:argz_add:3: +@:LDP man-pages:3.34:2007/05/18:argz_append:3:argz_add:3: +@:LDP man-pages:3.34:2007/05/18:argz_count:3:argz_add:3: +@:LDP man-pages:3.34:2007/05/18:argz_create:3:argz_add:3: +@:LDP man-pages:3.34:2007/05/18:argz_create_sep:3:argz_add:3: +@:LDP man-pages:3.34:2007/05/18:argz_delete:3:argz_add:3: +@:LDP man-pages:3.34:2007/05/18:argz_extract:3:argz_add:3: +@:LDP man-pages:3.34:2007/05/18:argz_insert:3:argz_add:3: +@:LDP man-pages:3.34:2007/05/18:argz_next:3:argz_add:3: +@:LDP man-pages:3.34:2007/05/18:argz_replace:3:argz_add:3: +@:LDP man-pages:3.34:2007/05/18:argz_stringify:3:argz_add:3: +@:LDP man-pages:3.34:2010/02/25:asctime:3:ctime:3: +@:LDP man-pages:3.34:2010/02/25:asctime_r:3:ctime:3: +○:LDP man-pages:3.34:2010/09/20:asin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:asinf:3:asin:3: +○:LDP man-pages:3.34:2010/09/20:asinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:asinhf:3:asinh:3: +@:LDP man-pages:3.34:2010/09/20:asinhl:3:asinh:3: +@:LDP man-pages:3.34:2010/09/20:asinl:3:asin:3: +○:LDP man-pages:3.34:2001/12/18:asprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2002/08/25:assert:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2002/08/25:assert_perror:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:atan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2010/09/20:atan2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:atan2f:3:atan2:3: +@:LDP man-pages:3.34:2010/09/20:atan2l:3:atan2:3: +@:LDP man-pages:3.34:2010/09/20:atanf:3:atan:3: +○:LDP man-pages:3.34:2010/09/11:atanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/11:atanhf:3:atanh:3: +@:LDP man-pages:3.34:2010/09/11:atanhl:3:atanh:3: +@:LDP man-pages:3.34:2010/09/20:atanl:3:atan:3: +○:LDP man-pages:3.34:2008/12/05:atexit:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:1993/03/29:atof:3:1998/02/18::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +○:LDP man-pages:3.34:2010/09/20:atoi:3:2001/02/09::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2010/09/20:atol:3:atoi:3: +@:LDP man-pages:3.34:2010/09/20:atoll:3:atoi:3: +@:LDP man-pages:3.34:2010/09/20:atoq:3:atoi:3: +@:LDP man-pages:3.34:2008/07/17:auth_destroy:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:authnone_create:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:authunix_create:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:authunix_create_default:3:rpc:3: +○:LDP man-pages:3.34:2008/06/14:backtrace:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/06/14:backtrace_symbols:3:backtrace:3: +@:LDP man-pages:3.34:2008/06/14:backtrace_symbols_fd:3:backtrace:3: +○:LDP man-pages:3.34:2009/03/30:basename:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/08/06:bcmp:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2009/03/15:bcopy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +※:LDP man-pages:3.34:2010/09/10:be16toh:3:endian:3: +※:LDP man-pages:3.34:2010/09/10:be32toh:3:endian:3: +※:LDP man-pages:3.34:2010/09/10:be64toh:3:endian:3: +○:LDP man-pages:3.34:2008/12/03:bindresvport:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/03/15:bsd_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2003/11/01:bsearch:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2004/12/26:bstring:3:2003/11/13::argrath@ub32.org:Kentaro Shirakata: +☆:LDP man-pages:3.32=>3.34:2011/09/22:btowc:3:1999/09/11::cz8cb01@linux.or.jp:HAYAKAWA Hitoshi: +○:LDP man-pages:3.34:1994/08/18:btree:3:1999/08/16::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2009/01/15:byteorder:3:2005/11/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2002/12/31:bzero:3:2003/03/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/12/26:cabs:3:2003/07/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/12/26:cabsf:3:cabs:3: +@:LDP man-pages:3.34:2007/12/26:cabsl:3:cabs:3: +☆:LDP man-pages:3.32=>3.34:2011/09/15:cacos:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/15:cacosf:3:cacos:3: +☆:LDP man-pages:3.32=>3.34:2011/09/15:cacosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/15:cacoshf:3:cacosh:3: +@:LDP man-pages:3.34:2011/09/15:cacoshl:3:cacosh:3: +@:LDP man-pages:3.34:2011/09/15:cacosl:3:cacos:3: +@:LDP man-pages:3.34:2011/09/08:calloc:3:malloc:3: +@:LDP man-pages:3.34:2008/07/17:callrpc:3:rpc:3: +○:LDP man-pages:3.34:2005/07/14:canonicalize_file_name:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2008/08/11:carg:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:cargf:3:carg:3: +@:LDP man-pages:3.34:2008/08/11:cargl:3:carg:3: +☆:LDP man-pages:3.32=>3.34:2008/08/11:casin:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:casinf:3:casin:3: +☆:LDP man-pages:3.32=>3.34:2008/08/11:casinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:casinhf:3:casinh:3: +@:LDP man-pages:3.34:2008/08/11:casinhl:3:casinh:3: +@:LDP man-pages:3.34:2008/08/11:casinl:3:casin:3: +☆:LDP man-pages:3.32=>3.34:2011/09/15:catan:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/15:catanf:3:catan:3: +☆:LDP man-pages:3.32=>3.34:2011/09/15:catanh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/15:catanhf:3:catanh:3: +@:LDP man-pages:3.34:2011/09/15:catanhl:3:catanh:3: +@:LDP man-pages:3.34:2011/09/15:catanl:3:catan:3: +@:LDP man-pages:3.34:2001/12/14:catclose:3:catopen:3: +○:LDP man-pages:3.34:1998/08/09:catgets:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2001/12/14:catopen:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: +@:LDP man-pages:3.34:2007/05/18:cbc_crypt:3:des_crypt:3: +☆:LDP man-pages:3.32=>3.34:2010/09/20:cbrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:cbrtf:3:cbrt:3: +@:LDP man-pages:3.34:2010/09/20:cbrtl:3:cbrt:3: +☆:LDP man-pages:3.32=>3.34:2008/08/11:ccos:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:ccosf:3:ccos:3: +☆:LDP man-pages:3.32=>3.34:2008/08/11:ccosh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:ccoshf:3:ccosh:3: +@:LDP man-pages:3.34:2008/08/11:ccoshl:3:ccosh:3: +@:LDP man-pages:3.34:2008/08/11:ccosl:3:ccos:3: +○:LDP man-pages:3.34:2010/09/20:ceil:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:ceilf:3:ceil:3: +@:LDP man-pages:3.34:2010/09/20:ceill:3:ceil:3: +○:LDP man-pages:3.34:2010/09/12:cerf:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/12:cerfc:3:cerf:3: +@:LDP man-pages:3.34:2010/09/12:cerfcf:3:cerf:3: +@:LDP man-pages:3.34:2010/09/12:cerfcl:3:cerf:3: +@:LDP man-pages:3.34:2010/09/12:cerff:3:cerf:3: +@:LDP man-pages:3.34:2010/09/12:cerfl:3:cerf:3: +☆:LDP man-pages:3.32=>3.34:2008/08/11:cexp:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2002/07/28:cexp2:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2002/07/28:cexp2f:3:cexp2:3: +@:LDP man-pages:3.34:2002/07/28:cexp2l:3:cexp2:3: +@:LDP man-pages:3.34:2008/08/11:cexpf:3:cexp:3: +@:LDP man-pages:3.34:2008/08/11:cexpl:3:cexp:3: +@:LDP man-pages:3.34:2011/09/08:cfgetispeed:3:termios:3: +@:LDP man-pages:3.34:2011/09/08:cfgetospeed:3:termios:3: +@:LDP man-pages:3.34:2011/09/08:cfmakeraw:3:termios:3: +○:LDP man-pages:3.34:2007/07/26:cfree:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2011/09/08:cfsetispeed:3:termios:3: +@:LDP man-pages:3.34:2011/09/08:cfsetospeed:3:termios:3: +@:LDP man-pages:3.34:2011/09/08:cfsetspeed:3:termios:3: +○:LDP man-pages:3.34:2007/12/23:cimag:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/12/23:cimagf:3:cimag:3: +@:LDP man-pages:3.34:2007/12/23:cimagl:3:cimag:3: +○:LDP man-pages:3.34:2010/10/04:clearenv:3:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO: +@:LDP man-pages:3.34:2008/08/29:clearerr:3:ferror:3: +@:LDP man-pages:3.34:2008/08/29:clearerr_unlocked:3:unlocked_stdio:3: +@:LDP man-pages:3.34:2008/07/17:clnt_broadcast:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clnt_call:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clnt_control:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clnt_create:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clnt_destroy:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clnt_freeres:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clnt_geterr:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clnt_pcreateerror:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clnt_perrno:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clnt_perror:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clnt_spcreateerror:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clnt_sperrno:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clnt_sperror:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clntraw_create:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clnttcp_create:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clntudp_bufcreate:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:clntudp_create:3:rpc:3: +○:LDP man-pages:3.34:2008/08/28:clock:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2010/09/10:clock_getcpuclockid:3::::: +@:LDP man-pages:3.34:2010/02/03:clock_getres:3:clock_getres:2: +@:LDP man-pages:3.34:2010/02/03:clock_gettime:3:clock_getres:2: +@:LDP man-pages:3.34:2010/02/03:clock_settime:3:clock_getres:2: +☆:LDP man-pages:3.32=>3.34:2008/08/11:clog:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/08/11:clog10:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:clog10f:3:clog10:3: +@:LDP man-pages:3.34:2008/08/11:clog10l:3:clog10:3: +○:LDP man-pages:3.34:2002/07/28:clog2:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2002/07/28:clog2f:3:clog2:3: +@:LDP man-pages:3.34:2002/07/28:clog2l:3:clog2:3: +@:LDP man-pages:3.34:2008/08/11:clogf:3:clog:3: +@:LDP man-pages:3.34:2008/08/11:clogl:3:clog:3: +○:LDP man-pages:3.34:2008/09/23:closedir:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2008/11/12:closelog:3:syslog:3: +☆:LDP man-pages:3.32=>3.34:2008/11/20:cmsg:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2010/02/03:confstr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2008/08/11:conj:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:conjf:3:conj:3: +@:LDP man-pages:3.34:2008/08/11:conjl:3:conj:3: +○:LDP man-pages:3.34:2010/09/20:copysign:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:copysignf:3:copysign:3: +@:LDP man-pages:3.34:2010/09/20:copysignl:3:copysign:3: +○:LDP man-pages:3.34:2010/09/11:cos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/11:cosf:3:cos:3: +○:LDP man-pages:3.34:2010/09/20:cosh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:coshf:3:cosh:3: +@:LDP man-pages:3.34:2010/09/20:coshl:3:cosh:3: +@:LDP man-pages:3.34:2010/09/11:cosl:3:cos:3: +○:LDP man-pages:3.34:2002/07/28:cpow:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2002/07/28:cpowf:3:cpow:3: +@:LDP man-pages:3.34:2002/07/28:cpowl:3:cpow:3: +○:LDP man-pages:3.34:2010/06/10:cproj:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/06/10:cprojf:3:cproj:3: +@:LDP man-pages:3.34:2010/06/10:cprojl:3:cproj:3: +○:LDP man-pages:3.34:2007/12/26:creal:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/12/26:crealf:3:creal:3: +@:LDP man-pages:3.34:2007/12/26:creall:3:creal:3: +☆:LDP man-pages:3.32=>3.34:2011/09/15:crypt:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2011/09/15:crypt_r:3:crypt:3: +☆:LDP man-pages:3.32=>3.34:2008/08/11:csin:3:2003/07/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:csinf:3:csin:3: +☆:LDP man-pages:3.32=>3.34:2008/08/11:csinh:3:2003/09/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:csinhf:3:csinh:3: +@:LDP man-pages:3.34:2008/08/11:csinhl:3:csinh:3: +@:LDP man-pages:3.34:2008/08/11:csinl:3:csin:3: +○:LDP man-pages:3.34:2008/08/11:csqrt:3:2003/08/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:csqrtf:3:csqrt:3: +@:LDP man-pages:3.34:2008/08/11:csqrtl:3:csqrt:3: +☆:LDP man-pages:3.32=>3.34:2008/08/11:ctan:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:ctanf:3:ctan:3: +☆:LDP man-pages:3.32=>3.34:2008/08/11:ctanh:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:ctanhf:3:ctanh:3: +@:LDP man-pages:3.34:2008/08/11:ctanhl:3:ctanh:3: +@:LDP man-pages:3.34:2008/08/11:ctanl:3:ctan:3: +○:LDP man-pages:3.34:2007/07/26:ctermid:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki: +○:LDP man-pages:3.34:2010/02/25:ctime:3:2008/11/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/02/25:ctime_r:3:ctime:3: +@:LDP man-pages:3.34:2008/06/29:cuserid:3:getlogin:3: +○:LDP man-pages:3.34:2009/12/05:daemon:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/02/25:daylight:3:tzset:3: +@:LDP man-pages:3.34:1994/01/02:db:3:dbopen:3: +○:LDP man-pages:3.34:1994/01/02:dbopen:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2007/05/18:des_crypt:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2007/05/18:des_setparity:3:des_crypt:3: +○:LDP man-pages:3.34:2010/02/25:difftime:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/26:dirfd:3:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2009/03/30:dirname:3:basename:3: +○:LDP man-pages:3.34:2010/09/20:div:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2007/05/18:dl_iterate_phdr:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2008/12/06:dladdr:3:dlopen:3: +@:LDP man-pages:3.34:2008/12/06:dlclose:3:dlopen:3: +@:LDP man-pages:3.34:2008/12/06:dlerror:3:dlopen:3: +○:LDP man-pages:3.34:2008/12/06:dlopen:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/12/06:dlsym:3:dlopen:3: +@:LDP man-pages:3.34:2008/12/06:dlvsym:3:dlopen:3: +@:LDP man-pages:3.34:2010/06/17:dn_comp:3:resolver:3: +@:LDP man-pages:3.34:2010/06/17:dn_expand:3:resolver:3: +○:LDP man-pages:3.34:2010/09/15:dprintf:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2007/07/26:drand48:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: +○:LDP man-pages:3.34:2007/07/26:drand48_r:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/09/20:drem:3:remainder:3: +@:LDP man-pages:3.34:2010/09/20:dremf:3:remainder:3: +@:LDP man-pages:3.34:2010/09/20:dreml:3:remainder:3: +○:LDP man-pages:3.34:2010/09/22:dysize:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: +@:LDP man-pages:3.34:2010/11/01:eaccess:3:euidaccess:3: +@:LDP man-pages:3.34:2007/05/18:ecb_crypt:3:des_crypt:3: +○:LDP man-pages:3.34:2010/09/20:ecvt:3:2009/05/14::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2007/07/26:ecvt_r:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/07/17:edata:3:end:3: +○:LDP man-pages:3.34:2003/04/04:encrypt:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2003/04/04:encrypt_r:3:encrypt:3: +☆:LDP man-pages:3.32=>3.34:2008/07/17:end:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2003/09/09:endaliasent:3:setaliasent:3: +@:LDP man-pages:3.34:2002/02/28:endfsent:3:getfsent:3: +@:LDP man-pages:3.34:2010/10/21:endgrent:3:getgrent:3: +@:LDP man-pages:3.34:2010/10/04:endhostent:3:gethostbyname:3: +×:LDP man-pages:3.34:2010/09/10:endian:3::::: +@:LDP man-pages:3.34:2009/09/15:endmntent:3:getmntent:3: +@:LDP man-pages:3.34:2008/08/19:endnetent:3:getnetent:3: +@:LDP man-pages:3.34:2007/07/26:endnetgrent:3:setnetgrent:3: +@:LDP man-pages:3.34:2008/08/19:endprotoent:3:getprotoent:3: +@:LDP man-pages:3.34:2010/10/21:endpwent:3:getpwent:3: +@:LDP man-pages:3.34:2008/08/19:endrpcent:3:getrpcent:3: +@:LDP man-pages:3.34:2008/08/19:endservent:3:getservent:3: +@:LDP man-pages:3.34:2010/02/25:endspent:3:getspnam:3: +@:LDP man-pages:3.34:2002/07/18:endttyent:3:getttyent:3: +@:LDP man-pages:3.34:2007/07/26:endusershell:3:getusershell:3: +@:LDP man-pages:3.34:2008/06/29:endutent:3:getutent:3: +@:LDP man-pages:3.34:2008/06/29:endutxent:3:getutent:3: +@:LDP man-pages:3.34:2007/05/18:envz:3:envz_add:3: +○:LDP man-pages:3.34:2007/05/18:envz_add:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/05/18:envz_entry:3:envz_add:3: +@:LDP man-pages:3.34:2007/05/18:envz_get:3:envz_add:3: +@:LDP man-pages:3.34:2007/05/18:envz_merge:3:envz_add:3: +@:LDP man-pages:3.34:2007/05/18:envz_remove:3:envz_add:3: +@:LDP man-pages:3.34:2007/05/18:envz_strip:3:envz_add:3: +@:LDP man-pages:3.34:2007/07/26:erand48:3:drand48:3: +@:LDP man-pages:3.34:2007/07/26:erand48_r:3:drand48_r:3: +○:LDP man-pages:3.34:2010/09/20:erf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:erfc:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:erfcf:3:erfc:3: +@:LDP man-pages:3.34:2010/09/20:erfcl:3:erfc:3: +@:LDP man-pages:3.34:2010/09/20:erff:3:erf:3: +@:LDP man-pages:3.34:2010/09/20:erfl:3:erf:3: +☆:LDP man-pages:3.32=>3.34:2011/09/15:err:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/07/09:errno:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/08/29:error:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/08/29:error_at_line:3:error:3: +@:LDP man-pages:3.34:2010/08/29:error_message_count:3:error:3: +@:LDP man-pages:3.34:2010/08/29:error_one_per_line:3:error:3: +@:LDP man-pages:3.34:2010/08/29:error_print_progname:3:error:3: +@:LDP man-pages:3.34:2011/09/15:errx:3:err:3: +@:LDP man-pages:3.34:2008/07/17:etext:3:end:3: +○:LDP man-pages:3.34:2002/07/20:ether_aton:3:2002/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2002/07/20:ether_aton_r:3:ether_aton:3: +@:LDP man-pages:3.34:2002/07/20:ether_hostton:3:ether_aton:3: +@:LDP man-pages:3.34:2002/07/20:ether_line:3:ether_aton:3: +@:LDP man-pages:3.34:2002/07/20:ether_ntoa:3:ether_aton:3: +@:LDP man-pages:3.34:2002/07/20:ether_ntoa_r:3:ether_aton:3: +@:LDP man-pages:3.34:2002/07/20:ether_ntohost:3:ether_aton:3: +☆:LDP man-pages:3.29=>3.34:2010/11/01:euidaccess:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/08/30:eventfd_read:3:eventfd:2: +@:LDP man-pages:3.34:2010/08/30:eventfd_write:3:eventfd:2: +○:LDP man-pages:3.34:2010/09/25:exec:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/25:execl:3:exec:3: +@:LDP man-pages:3.34:2010/09/25:execle:3:exec:3: +@:LDP man-pages:3.34:2010/09/25:execlp:3:exec:3: +@:LDP man-pages:3.34:2010/09/25:execv:3:exec:3: +@:LDP man-pages:3.34:2010/09/25:execvp:3:exec:3: +@:LDP man-pages:3.34:2010/09/25:execvpe:3:exec:3: +○:LDP man-pages:3.34:2009/09/20:exit:3:2007/06/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:exp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/08/11:exp10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:exp10f:3:exp10:3: +@:LDP man-pages:3.34:2008/08/11:exp10l:3:exp10:3: +○:LDP man-pages:3.34:2010/09/20:exp2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:exp2f:3:exp2:3: +@:LDP man-pages:3.34:2010/09/20:exp2l:3:exp2:3: +@:LDP man-pages:3.34:2010/09/20:expf:3:exp:3: +@:LDP man-pages:3.34:2010/09/20:expl:3:exp:3: +○:LDP man-pages:3.34:2010/09/12:expm1:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/12:expm1f:3:expm1:3: +@:LDP man-pages:3.34:2010/09/12:expm1l:3:expm1:3: +○:LDP man-pages:3.34:2010/09/20:fabs:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:fabsf:3:fabs:3: +@:LDP man-pages:3.34:2010/09/20:fabsl:3:fabs:3: +○:LDP man-pages:3.34:2009/02/23:fclose:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2006/12/27:fcloseall:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:fcvt:3:ecvt:3: +@:LDP man-pages:3.34:2007/07/26:fcvt_r:3:ecvt_r:3: +○:LDP man-pages:3.34:2010/09/20:fdim:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:fdimf:3:fdim:3: +@:LDP man-pages:3.34:2010/09/20:fdiml:3:fdim:3: +@:LDP man-pages:3.34:2009/02/23:fdopen:3:fopen:3: +@:LDP man-pages:3.34:2010/06/20:fdopendir:3:opendir:3: +@:LDP man-pages:3.34:2010/10/31:feclearexcept:3:fenv:3: +@:LDP man-pages:3.34:2010/10/31:fedisableexcept:3:fenv:3: +@:LDP man-pages:3.34:2010/10/31:feenableexcept:3:fenv:3: +@:LDP man-pages:3.34:2010/10/31:fegetenv:3:fenv:3: +@:LDP man-pages:3.34:2010/10/31:fegetexcept:3:fenv:3: +@:LDP man-pages:3.34:2010/10/31:fegetexceptflag:3:fenv:3: +@:LDP man-pages:3.34:2010/10/31:fegetround:3:fenv:3: +@:LDP man-pages:3.34:2010/10/31:feholdexcept:3:fenv:3: +○:LDP man-pages:3.34:2010/10/31:fenv:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/29:feof:3:ferror:3: +@:LDP man-pages:3.34:2008/08/29:feof_unlocked:3:unlocked_stdio:3: +@:LDP man-pages:3.34:2010/10/31:feraiseexcept:3:fenv:3: +○:LDP man-pages:3.34:2008/08/29:ferror:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2008/08/29:ferror_unlocked:3:unlocked_stdio:3: +@:LDP man-pages:3.34:2010/10/31:fesetenv:3:fenv:3: +@:LDP man-pages:3.34:2010/10/31:fesetexceptflag:3:fenv:3: +@:LDP man-pages:3.34:2010/10/31:fesetround:3:fenv:3: +@:LDP man-pages:3.34:2010/10/31:fetestexcept:3:fenv:3: +@:LDP man-pages:3.34:2010/10/31:feupdateenv:3:fenv:3: +○:LDP man-pages:3.34:2010/09/15:fexecve:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2009/09/06:fflush:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2008/08/29:fflush_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.34:2010/09/20:ffs:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2010/09/20:ffsl:3:ffs:3: +@:LDP man-pages:3.34:2010/09/20:ffsll:3:ffs:3: +@:LDP man-pages:3.34:2008/08/06:fgetc:3:gets:3: +@:LDP man-pages:3.34:2008/08/29:fgetc_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.34:2008/07/10:fgetgrent:3:1997/12/19::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +@:LDP man-pages:3.34:2010/10/21:fgetgrent_r:3:getgrent_r:3: +@:LDP man-pages:3.34:1993/11/29:fgetpos:3:fseek:3: +○:LDP man-pages:3.34:2008/07/10:fgetpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +@:LDP man-pages:3.34:2010/10/21:fgetpwent_r:3:getpwent_r:3: +@:LDP man-pages:3.34:2008/08/06:fgets:3:gets:3: +@:LDP man-pages:3.34:2008/08/29:fgets_unlocked:3:unlocked_stdio:3: +@:LDP man-pages:3.34:2010/02/25:fgetspent:3:getspnam:3: +@:LDP man-pages:3.34:2010/02/25:fgetspent_r:3:getspnam:3: +○:LDP man-pages:3.34:1999/07/25:fgetwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2008/08/29:fgetwc_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.34:1999/07/25:fgetws:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO: +@:LDP man-pages:3.34:2008/08/29:fgetws_unlocked:3:unlocked_stdio:3: +@:LDP man-pages:3.34:2008/08/29:fileno:3:ferror:3: +@:LDP man-pages:3.34:2008/08/29:fileno_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.34:2008/08/05:finite:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/05:finitef:3:finite:3: +@:LDP man-pages:3.34:2008/08/05:finitel:3:finite:3: +○:LDP man-pages:3.34:2008/08/29:flockfile:3:2001/11/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:floor:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:floorf:3:floor:3: +@:LDP man-pages:3.34:2010/09/20:floorl:3:floor:3: +○:LDP man-pages:3.34:2010/09/20:fma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:fmaf:3:fma:3: +@:LDP man-pages:3.34:2010/09/20:fmal:3:fma:3: +○:LDP man-pages:3.34:2010/09/20:fmax:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:fmaxf:3:fmax:3: +@:LDP man-pages:3.34:2010/09/20:fmaxl:3:fmax:3: +○:LDP man-pages:3.34:2010/09/15:fmemopen:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:fmin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:fminf:3:fmin:3: +@:LDP man-pages:3.34:2010/09/20:fminl:3:fmin:3: +○:LDP man-pages:3.34:2010/09/20:fmod:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:fmodf:3:fmod:3: +@:LDP man-pages:3.34:2010/09/20:fmodl:3:fmod:3: +○:LDP man-pages:3.34:2008/06/14:fmtmsg:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2000/10/15:fnmatch:3:2006/03/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/02/23:fopen:3:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2008/12/05:fopencookie:3::::: +@:LDP man-pages:3.34:2010/06/13:forkpty:3:openpty:3: +○:LDP man-pages:3.34:1993/04/04:fpathconf:3:1998/03/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2010/09/20:fpclassify:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:fprintf:3:printf:3: +○:LDP man-pages:3.34:2001/12/15:fpurge:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +@:LDP man-pages:3.34:1993/04/04:fputc:3:puts:3: +@:LDP man-pages:3.34:2008/08/29:fputc_unlocked:3:unlocked_stdio:3: +@:LDP man-pages:3.34:1993/04/04:fputs:3:puts:3: +@:LDP man-pages:3.34:2008/08/29:fputs_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.34:1999/07/25:fputwc:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2008/08/29:fputwc_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.34:1999/07/25:fputws:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2008/08/29:fputws_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.34:1996/05/17:fread:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2008/08/29:fread_unlocked:3:unlocked_stdio:3: +@:LDP man-pages:3.34:2011/09/08:free:3:malloc:3: +@:LDP man-pages:3.34:2010/09/27:freeaddrinfo:3:getaddrinfo:3: +@:LDP man-pages:3.34:2010/09/04:freehostent:3:getipnodebyname:3: +※:LDP man-pages:3.34:2010/10/06:freeifaddrs:3:getifaddrs:3: +@:LDP man-pages:3.34:2009/02/23:freopen:3:fopen:3: +☆:LDP man-pages:3.32=>3.34:2010/09/20:frexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:frexpf:3:frexp:3: +@:LDP man-pages:3.34:2010/09/20:frexpl:3:frexp:3: +@:LDP man-pages:3.34:2010/09/20:fscanf:3:scanf:3: +○:LDP man-pages:3.34:1993/11/29:fseek:3:1998/04/27::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2001/11/05:fseeko:3:2006/01/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:1993/11/29:fsetpos:3:fseek:3: +@:LDP man-pages:3.34:2003/08/22:fstatvfs:3:statvfs:3: +@:LDP man-pages:3.34:1993/11/29:ftell:3:fseek:3: +@:LDP man-pages:3.34:2001/11/05:ftello:3:fseeko:3: +○:LDP man-pages:3.34:2010/02/25:ftime:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +☆:LDP man-pages:3.31=>3.34:2001/11/28:ftok:3:2002/01/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: +@:LDP man-pages:3.34:2008/08/29:ftrylockfile:3:flockfile:3: +○:LDP man-pages:3.34:2007/12/28:fts:3:2000/09/05::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +@:LDP man-pages:3.34:2007/12/28:fts_children:3:fts:3: +@:LDP man-pages:3.34:2007/12/28:fts_close:3:fts:3: +@:LDP man-pages:3.34:2007/12/28:fts_open:3:fts:3: +@:LDP man-pages:3.34:2007/12/28:fts_read:3:fts:3: +@:LDP man-pages:3.34:2007/12/28:fts_set:3:fts:3: +○:LDP man-pages:3.34:2010/09/20:ftw:3:2006/07/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/29:funlockfile:3:flockfile:3: +※:LDP man-pages:3.34:2009/12/13:futimens:3:utimensat:2: +○:LDP man-pages:3.34:2008/04/07:futimes:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2011/09/17:fwide:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +@:LDP man-pages:3.34:2011/09/17:fwprintf:3:wprintf:3: +@:LDP man-pages:3.34:1996/05/17:fwrite:3:fread:3: +@:LDP man-pages:3.34:2008/08/29:fwrite_unlocked:3:unlocked_stdio:3: +※:LDP man-pages:3.34:2010/09/27:gai_cancel:3:getaddrinfo_a:3: +※:LDP man-pages:3.34:2010/09/27:gai_error:3:getaddrinfo_a:3: +@:LDP man-pages:3.34:2010/09/27:gai_strerror:3:getaddrinfo:3: +※:LDP man-pages:3.34:2010/09/27:gai_suspend:3:getaddrinfo_a:3: +○:LDP man-pages:3.34:2008/08/05:gamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/05:gammaf:3:gamma:3: +@:LDP man-pages:3.34:2008/08/05:gammal:3:gamma:3: +○:LDP man-pages:3.34:2010/09/20:gcvt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:get_current_dir_name:3:getcwd:3: +@:LDP man-pages:3.34:2008/07/17:get_myaddress:3:rpc:3: +○:LDP man-pages:3.34:2010/09/27:getaddrinfo:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2010/09/27:getaddrinfo_a:3::::: +@:LDP man-pages:3.34:2003/09/09:getaliasbyname:3:setaliasent:3: +@:LDP man-pages:3.34:2003/09/09:getaliasbyname_r:3:setaliasent:3: +@:LDP man-pages:3.34:2003/09/09:getaliasent:3:setaliasent:3: +@:LDP man-pages:3.34:2003/09/09:getaliasent_r:3:setaliasent:3: +@:LDP man-pages:3.34:2008/08/06:getc:3:gets:3: +@:LDP man-pages:3.34:2008/08/29:getc_unlocked:3:unlocked_stdio:3: +@:LDP man-pages:3.34:2008/08/06:getchar:3:gets:3: +@:LDP man-pages:3.34:2008/08/29:getchar_unlocked:3:unlocked_stdio:3: +☆:LDP man-pages:3.32=>3.34:2010/09/20:getcwd:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2010/09/20:getdate:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:getdate_err:3:getdate:3: +@:LDP man-pages:3.34:2010/09/20:getdate_r:3:getdate:3: +@:LDP man-pages:3.34:2010/06/12:getdelim:3:getline:3: +○:LDP man-pages:3.34:2007/07/26:getdirentries:3:1998/04/30::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2008/03/17:getenv:3:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2002/02/28:getfsent:3:2002/08/07::nakano@apm.seikei.ac.jp:NAKANO Takeo: +@:LDP man-pages:3.34:2002/02/28:getfsfile:3:getfsent:3: +@:LDP man-pages:3.34:2002/02/28:getfsspec:3:getfsent:3: +○:LDP man-pages:3.34:2010/10/21:getgrent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/10/21:getgrent_r:3:2004/08/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/10/21:getgrgid:3:getgrnam:3: +@:LDP man-pages:3.34:2010/10/21:getgrgid_r:3:getgrnam:3: +☆:LDP man-pages:3.29=>3.34:2010/10/21:getgrnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/10/21:getgrnam_r:3:getgrnam:3: +☆:LDP man-pages:3.32=>3.34:2008/07/03:getgrouplist:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/10/04:gethostbyaddr:3:gethostbyname:3: +@:LDP man-pages:3.34:2010/10/04:gethostbyaddr_r:3:gethostbyname:3: +○:LDP man-pages:3.34:2010/10/04:gethostbyname:3:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/10/04:gethostbyname2:3:gethostbyname:3: +@:LDP man-pages:3.34:2010/10/04:gethostbyname2_r:3:gethostbyname:3: +@:LDP man-pages:3.34:2010/10/04:gethostbyname_r:3:gethostbyname:3: +@:LDP man-pages:3.34:2010/10/04:gethostent:3:gethostbyname:3: +@:LDP man-pages:3.34:2010/10/04:gethostent_r:3:gethostbyname:3: +○:LDP man-pages:3.34:2010/09/20:gethostid:3:2009/01/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2010/10/06:getifaddrs:3::::: +@:LDP man-pages:3.34:2010/09/04:getipnodebyaddr:3:getipnodebyname:3: +○:LDP man-pages:3.34:2010/09/04:getipnodebyname:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2010/06/12:getline:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/12/08:getloadavg:3:2002/01/21::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2008/06/29:getlogin:3:2005/03/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/06/29:getlogin_r:3:getlogin:3: +○:LDP man-pages:3.34:2009/09/15:getmntent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2009/09/15:getmntent_r:3:getmntent:3: +○:LDP man-pages:3.34:2009/12/03:getnameinfo:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/19:getnetbyaddr:3:getnetent:3: +※:LDP man-pages:3.34:2010/09/10:getnetbyaddr_r:3:getnetent_r:3: +@:LDP man-pages:3.34:2008/08/19:getnetbyname:3:getnetent:3: +※:LDP man-pages:3.34:2010/09/10:getnetbyname_r:3:getnetent_r:3: +○:LDP man-pages:3.34:2008/08/19:getnetent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2010/09/10:getnetent_r:3::::: +@:LDP man-pages:3.34:2007/07/26:getnetgrent:3:setnetgrent:3: +@:LDP man-pages:3.34:2007/07/26:getnetgrent_r:3:setnetgrent:3: +○:LDP man-pages:3.34:2010/11/01:getopt:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/11/01:getopt_long:3:getopt:3: +@:LDP man-pages:3.34:2010/11/01:getopt_long_only:3:getopt:3: +○:LDP man-pages:3.34:2010/09/20:getpass:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo:Older ver. is in obsolete/ +@:LDP man-pages:3.34:2008/08/19:getprotobyname:3:getprotoent:3: +※:LDP man-pages:3.34:2010/09/10:getprotobyname_r:3:getprotoent_r:3: +@:LDP man-pages:3.34:2008/08/19:getprotobynumber:3:getprotoent:3: +※:LDP man-pages:3.34:2010/09/10:getprotobynumber_r:3:getprotoent_r:3: +○:LDP man-pages:3.34:2008/08/19:getprotoent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2010/09/10:getprotoent_r:3::::: +○:LDP man-pages:3.34:2010/09/10:getpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/10/21:getpw:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2010/10/21:getpwent:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/10/21:getpwent_r:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.29=>3.34:2010/10/21:getpwnam:3:2005/10/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/10/21:getpwnam_r:3:getpwnam:3: +@:LDP man-pages:3.34:2010/10/21:getpwuid:3:getpwnam:3: +@:LDP man-pages:3.34:2010/10/21:getpwuid_r:3:getpwnam:3: +@:LDP man-pages:3.34:2008/08/19:getrpcbyname:3:getrpcent:3: +※:LDP man-pages:3.34:2010/09/10:getrpcbyname_r:3:getrpcent_r:3: +@:LDP man-pages:3.34:2008/08/19:getrpcbynumber:3:getrpcent:3: +※:LDP man-pages:3.34:2010/09/10:getrpcbynumber_r:3:getrpcent_r:3: +○:LDP man-pages:3.34:2008/08/19:getrpcent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2010/09/10:getrpcent_r:3::::: +○:LDP man-pages:3.34:1987/10/06:getrpcport:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:2008/08/06:gets:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/19:getservbyname:3:getservent:3: +※:LDP man-pages:3.34:2010/09/10:getservbyname_r:3:getservent_r:3: +@:LDP man-pages:3.34:2008/08/19:getservbyport:3:getservent:3: +※:LDP man-pages:3.34:2010/09/10:getservbyport_r:3:getservent_r:3: +○:LDP man-pages:3.34:2008/08/19:getservent:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2010/09/10:getservent_r:3::::: +@:LDP man-pages:3.34:2010/02/25:getspent:3:getspnam:3: +@:LDP man-pages:3.34:2010/02/25:getspent_r:3:getspnam:3: +○:LDP man-pages:3.34:2010/02/25:getspnam:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/02/25:getspnam_r:3:getspnam:3: +○:LDP man-pages:3.34:2010/09/26:getsubopt:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2002/07/18:getttyent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2002/07/18:getttynam:3:getttyent:3: +○:LDP man-pages:3.34:2010/09/10:getumask:3:2003/02/02::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/07/26:getusershell:3:1998/02/05::ishioka@dad.eec.toshiba.co.jp:ISHIOKA Takashi: +○:LDP man-pages:3.34:2008/06/29:getutent:3:2005/03/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/06/29:getutent_r:3:getutent:3: +@:LDP man-pages:3.34:2008/06/29:getutid:3:getutent:3: +@:LDP man-pages:3.34:2008/06/29:getutid_r:3:getutent:3: +@:LDP man-pages:3.34:2008/06/29:getutline:3:getutent:3: +@:LDP man-pages:3.34:2008/06/29:getutline_r:3:getutent:3: +×:LDP man-pages:3.34:2010/09/10:getutmp:3::::: +※:LDP man-pages:3.34:2010/09/10:getutmpx:3:getutmp:3: +@:LDP man-pages:3.34:2008/06/29:getutxent:3:getutent:3: +@:LDP man-pages:3.34:2008/06/29:getutxid:3:getutent:3: +@:LDP man-pages:3.34:2008/06/29:getutxline:3:getutent:3: +○:LDP man-pages:3.34:2010/09/26:getw:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:1999/07/25:getwc:3:fgetwc:3: +@:LDP man-pages:3.34:2008/08/29:getwc_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.34:1999/07/25:getwchar:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2008/08/29:getwchar_unlocked:3:unlocked_stdio:3: +@:LDP man-pages:3.34:2010/09/20:getwd:3:getcwd:3: +○:LDP man-pages:3.34:2007/10/10:glob:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2007/10/10:globfree:3:glob:3: +@:LDP man-pages:3.34:2010/02/25:gmtime:3:ctime:3: +@:LDP man-pages:3.34:2010/02/25:gmtime_r:3:ctime:3: +※:LDP man-pages:3.34:2010/09/10:gnu_dev_major:3:makedev:3: +※:LDP man-pages:3.34:2010/09/10:gnu_dev_makedev:3:makedev:3: +※:LDP man-pages:3.34:2010/09/10:gnu_dev_minor:3:makedev:3: +@:LDP man-pages:3.34:2010/09/10:gnu_get_libc_release:3:gnu_get_libc_version:3: +○:LDP man-pages:3.34:2010/09/10:gnu_get_libc_version:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/06/14:grantpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/07/26:gsignal:3:2003/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/10/04:h_errno:3:gethostbyname:3: +○:LDP man-pages:3.34:1994/08/18:hash:3:1999/08/17::nakano@apm.seikei.ac.jp:NAKANO Takeo: +@:LDP man-pages:3.34:2009/09/15:hasmntopt:3:getmntent:3: +@:LDP man-pages:3.34:2011/09/10:hcreate:3:hsearch:3: +@:LDP man-pages:3.34:2011/09/10:hcreate_r:3:hsearch:3: +@:LDP man-pages:3.34:2011/09/10:hdestroy:3:hsearch:3: +@:LDP man-pages:3.34:2011/09/10:hdestroy_r:3:hsearch:3: +@:LDP man-pages:3.34:2010/10/04:herror:3:gethostbyname:3: +☆:LDP man-pages:3.32=>3.34:2011/09/10:hsearch:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/10:hsearch_r:3:hsearch:3: +@:LDP man-pages:3.34:2010/10/04:hstrerror:3:gethostbyname:3: +※:LDP man-pages:3.34:2010/09/10:htobe16:3:endian:3: +※:LDP man-pages:3.34:2010/09/10:htobe32:3:endian:3: +※:LDP man-pages:3.34:2010/09/10:htobe64:3:endian:3: +※:LDP man-pages:3.34:2010/09/10:htole16:3:endian:3: +※:LDP man-pages:3.34:2010/09/10:htole32:3:endian:3: +※:LDP man-pages:3.34:2010/09/10:htole64:3:endian:3: +@:LDP man-pages:3.34:2009/01/15:htonl:3:byteorder:3: +@:LDP man-pages:3.34:2009/01/15:htons:3:byteorder:3: +○:LDP man-pages:3.34:2010/09/20:hypot:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:hypotf:3:hypot:3: +@:LDP man-pages:3.34:2010/09/20:hypotl:3:hypot:3: +○:LDP man-pages:3.34:2008/09/08:iconv:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +○:LDP man-pages:3.34:2008/08/11:iconv_close:3:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +○:LDP man-pages:3.34:2008/08/11:iconv_open:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:ilogb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:ilogbf:3:ilogb:3: +@:LDP man-pages:3.34:2010/09/20:ilogbl:3:ilogb:3: +@:LDP man-pages:3.34:2010/09/20:imaxabs:3:abs:3: +@:LDP man-pages:3.34:2010/09/20:imaxdiv:3:div:3: +☆:LDP man-pages:3.32=>3.34:2011/09/21:index:3:1997/12/12::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +○:LDP man-pages:3.34:2008/06/19:inet:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/06/19:inet_addr:3:inet:3: +@:LDP man-pages:3.34:2008/06/19:inet_aton:3:inet:3: +@:LDP man-pages:3.34:2008/06/19:inet_lnaof:3:inet:3: +@:LDP man-pages:3.34:2008/06/19:inet_makeaddr:3:inet_addr:3: +@:LDP man-pages:3.34:2008/06/19:inet_netof:3:inet:3: +@:LDP man-pages:3.34:2008/06/19:inet_network:3:inet:3: +@:LDP man-pages:3.34:2008/06/19:inet_ntoa:3:inet:3: +○:LDP man-pages:3.34:2008/11/11:inet_ntop:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2008/06/18:inet_pton:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:1993/06/02:infnan:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2007/07/26:initgroups:3:2005/02/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:initstate:3:random:3: +@:LDP man-pages:3.34:2008/03/07:initstate_r:3:random_r:3: +@:LDP man-pages:3.34:2007/07/26:innetgr:3:setnetgrent:3: +☆:LDP man-pages:3.25=>3.34:2010/09/09:insque:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2010/11/11:intro:3:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/12/28:iruserok:3:rcmd:3: +@:LDP man-pages:3.34:2010/09/20:isalnum:3:isalpha:3: +○:LDP man-pages:3.34:2010/09/20:isalpha:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:isascii:3:isalpha:3: +○:LDP man-pages:3.34:2008/12/03:isatty:3:1997/2/10::nagoya@cc.hit-u.ac.jp:NAGOYA Hiroaki: +@:LDP man-pages:3.34:2010/09/20:isblank:3:isalpha:3: +@:LDP man-pages:3.34:2010/09/20:iscntrl:3:isalpha:3: +@:LDP man-pages:3.34:2010/09/20:isdigit:3:isalpha:3: +@:LDP man-pages:3.34:2010/09/20:isfinite:3:fpclassify:3: +@:LDP man-pages:3.34:2010/09/20:isgraph:3:isalpha:3: +○:LDP man-pages:3.34:2010/09/20:isgreater:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:isgreaterequal:3:isgreater:3: +@:LDP man-pages:3.34:2010/09/20:isinf:3:fpclassify:3: +@:LDP man-pages:3.34:2008/08/05:isinff:3:finite:3: +@:LDP man-pages:3.34:2008/08/05:isinfl:3:finite:3: +@:LDP man-pages:3.34:2010/09/20:isless:3:isgreater:3: +@:LDP man-pages:3.34:2010/09/20:islessequal:3:isgreater:3: +@:LDP man-pages:3.34:2010/09/20:islessgreater:3:isgreater:3: +@:LDP man-pages:3.34:2010/09/20:islower:3:isalpha:3: +@:LDP man-pages:3.34:2010/09/20:isnan:3:fpclassify:3: +@:LDP man-pages:3.34:2008/08/05:isnanf:3:finite:3: +@:LDP man-pages:3.34:2008/08/05:isnanl:3:finite:3: +@:LDP man-pages:3.34:2010/09/20:isnormal:3:fpclassify:3: +@:LDP man-pages:3.34:2010/09/20:isprint:3:isalpha:3: +@:LDP man-pages:3.34:2010/09/20:ispunct:3:isalpha:3: +@:LDP man-pages:3.34:2010/09/20:isspace:3:isalpha:3: +@:LDP man-pages:3.34:2010/09/20:isunordered:3:isgreater:3: +@:LDP man-pages:3.34:2010/09/20:isupper:3:isalpha:3: +○:LDP man-pages:3.34:1999/07/25:iswalnum:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:1999/07/25:iswalpha:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2010/09/20:iswblank:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:1999/07/25:iswcntrl:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:iswctype:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:iswdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:1999/07/25:iswgraph:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:1999/07/25:iswlower:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:1999/07/25:iswprint:3:1999/09/12::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:iswpunct:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:1999/07/25:iswspace:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:1999/07/25:iswupper:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:1999/07/25:iswxdigit:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2010/09/20:isxdigit:3:isalpha:3: +○:LDP man-pages:3.34:2010/09/20:j0:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:j0f:3:j0:3: +@:LDP man-pages:3.34:2010/09/20:j0l:3:j0:3: +@:LDP man-pages:3.34:2010/09/20:j1:3:j0:3: +@:LDP man-pages:3.34:2010/09/20:j1f:3:j0:3: +@:LDP man-pages:3.34:2010/09/20:j1l:3:j0:3: +@:LDP man-pages:3.34:2010/09/20:jn:3:j0:3: +@:LDP man-pages:3.34:2010/09/20:jnf:3:j0:3: +@:LDP man-pages:3.34:2010/09/20:jnl:3:j0:3: +@:LDP man-pages:3.34:2007/07/26:jrand48:3:drand48:3: +@:LDP man-pages:3.34:2007/07/26:jrand48_r:3:drand48_r:3: +@:LDP man-pages:3.34:2002/07/18:key_decryptsession:3:key_setsecret:3: +@:LDP man-pages:3.34:2002/07/18:key_encryptsession:3:key_setsecret:3: +@:LDP man-pages:3.34:2002/07/18:key_gendes:3:key_setsecret:3: +@:LDP man-pages:3.34:2002/07/18:key_secretkey_is_set:3:key_setsecret:3: +○:LDP man-pages:3.34:2002/07/18:key_setsecret:3:2003/02/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/07:klogctl:3:syslog:2: +@:LDP man-pages:3.34:2010/09/20:l64a:3:a64l:3: +@:LDP man-pages:3.34:2010/09/20:labs:3:abs:3: +@:LDP man-pages:3.34:2010/02/25:lckpwdf:3:getspnam:3: +@:LDP man-pages:3.34:2007/07/26:lcong48:3:drand48:3: +@:LDP man-pages:3.34:2007/07/26:lcong48_r:3:drand48_r:3: +○:LDP man-pages:3.34:2010/09/20:ldexp:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:ldexpf:3:ldexp:3: +@:LDP man-pages:3.34:2010/09/20:ldexpl:3:ldexp:3: +@:LDP man-pages:3.34:2010/09/20:ldiv:3:div:3: +※:LDP man-pages:3.34:2010/09/10:le16toh:3:endian:3: +※:LDP man-pages:3.34:2010/09/10:le32toh:3:endian:3: +※:LDP man-pages:3.34:2010/09/10:le64toh:3:endian:3: +@:LDP man-pages:3.34:1999/09/27:lfind:3:lsearch:3: +○:LDP man-pages:3.34:2010/09/11:lgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/11:lgamma_r:3:lgamma:3: +@:LDP man-pages:3.34:2010/09/11:lgammaf:3:lgamma:3: +@:LDP man-pages:3.34:2010/09/11:lgammaf_r:3:lgamma:3: +@:LDP man-pages:3.34:2010/09/11:lgammal:3:lgamma:3: +@:LDP man-pages:3.34:2010/09/11:lgammal_r:3:lgamma:3: +×:LDP man-pages:3.34:2010/10/20:lio_listio:3::::: +@:LDP man-pages:3.34:2010/09/20:llabs:3:abs:3: +@:LDP man-pages:3.34:2010/09/20:lldiv:3:div:3: +@:LDP man-pages:3.34:2010/09/20:llrint:3:lrint:3: +@:LDP man-pages:3.34:2010/09/20:llrintf:3:lrint:3: +@:LDP man-pages:3.34:2010/09/20:llrintl:3:lrint:3: +@:LDP man-pages:3.34:2010/09/20:llround:3:lround:3: +@:LDP man-pages:3.34:2010/09/20:llroundf:3:lround:3: +@:LDP man-pages:3.34:2010/09/20:llroundl:3:lround:3: +○:LDP man-pages:3.34:1993/04/25:localeconv:3:1998/05/25::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +@:LDP man-pages:3.34:2010/02/25:localtime:3:ctime:3: +@:LDP man-pages:3.34:2010/02/25:localtime_r:3:ctime:3: +☆:LDP man-pages:3.32=>3.34:2011/09/11:lockf:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:log:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:log10:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:log10f:3:log10:3: +@:LDP man-pages:3.34:2010/09/20:log10l:3:log10:3: +○:LDP man-pages:3.34:2010/09/20:log1p:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:log1pf:3:log1p:3: +@:LDP man-pages:3.34:2010/09/20:log1pl:3:log1p:3: +○:LDP man-pages:3.34:2010/09/12:log2:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/12:log2f:3:log2:3: +@:LDP man-pages:3.34:2010/09/12:log2l:3:log2:3: +○:LDP man-pages:3.34:2010/09/20:logb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:logbf:3:logb:3: +@:LDP man-pages:3.34:2010/09/20:logbl:3:logb:3: +@:LDP man-pages:3.34:2010/09/20:logf:3:log:3: +○:LDP man-pages:3.34:2004/05/06:login:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/06/13:login_tty:3:openpty:3: +@:LDP man-pages:3.34:2010/09/20:logl:3:log:3: +@:LDP man-pages:3.34:2004/05/06:logout:3:login:3: +@:LDP man-pages:3.34:2008/07/02:logwtmp:3:updwtmp:3: +○:LDP man-pages:3.34:2009/01/13:longjmp:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/07/26:lrand48:3:drand48:3: +@:LDP man-pages:3.34:2007/07/26:lrand48_r:3:drand48_r:3: +○:LDP man-pages:3.34:2010/09/20:lrint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:lrintf:3:lrint:3: +@:LDP man-pages:3.34:2010/09/20:lrintl:3:lrint:3: +○:LDP man-pages:3.34:2010/09/20:lround:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:lroundf:3:lround:3: +@:LDP man-pages:3.34:2010/09/20:lroundl:3:lround:3: +○:LDP man-pages:3.34:1999/09/27:lsearch:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2004/12/11:lseek64:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2008/04/07:lutimes:3:futimes:3: +※:LDP man-pages:3.34:2010/09/10:major:3:makedev:3: +○:LDP man-pages:3.34:2009/03/31:makecontext:3:2008/12/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2010/09/10:makedev:3::::: +☆:LDP man-pages:3.25=>3.34:2011/09/08:malloc:3:2007/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.25=>3.34:2010/10/13:malloc_hook:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2010/09/10:matherr:3::::: +○:LDP man-pages:3.34:1999/07/25:mblen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:1999/07/25:mbrlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:2001/11/22:mbrtowc:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2000/11/20:mbsinit:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:2010/09/15:mbsnrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:1999/07/25:mbsrtowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +☆:LDP man-pages:3.32=>3.34:2011/09/10:mbstowcs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:2001/07/04:mbtowc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +@:LDP man-pages:3.34:2010/09/20:memalign:3:posix_memalign:3: +○:LDP man-pages:3.34:2009/01/13:memccpy:3:1997/07/26::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +☆:LDP man-pages:3.32=>3.34:2009/12/04:memchr:3:2004/01/17::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.32=>3.34:2011/09/14:memcmp:3:1997/12/17::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +☆:LDP man-pages:3.31=>3.34:2010/11/15:memcpy:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +○:LDP man-pages:3.34:2010/09/10:memfrob:3:1998/05/34::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +○:LDP man-pages:3.34:2008/12/05:memmem:3:1997/12/17::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +○:LDP man-pages:3.34:1993/04/10:memmove:3:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/08/12:mempcpy:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2009/12/04:memrchr:3:memchr:3: +○:LDP man-pages:3.34:1993/04/11:memset:3:1997/02/21::tyoshino@eng.toyo.ac.jp:Takashi Yoshino: +※:LDP man-pages:3.34:2010/09/10:minor:3:makedev:3: +○:LDP man-pages:3.34:2010/09/26:mkdtemp:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.34:2008/06/12:mkfifo:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2009/12/13:mkfifoat:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/09/26:mkostemp:3:mkstemp:3: +@:LDP man-pages:3.34:2010/09/26:mkostemps:3:mkstemp:3: +☆:LDP man-pages:3.24=>3.34:2010/09/26:mkstemp:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/26:mkstemps:3:mkstemp:3: +○:LDP man-pages:3.34:2010/09/20:mktemp:3:1999/04/10::tanisako@osa.dec.com:Kazuyuki Tanisako: +@:LDP man-pages:3.34:2010/02/25:mktime:3:ctime:3: +@:LDP man-pages:3.34:2008/04/22:mmap64:3:mmap2:2: +☆:LDP man-pages:3.32=>3.34:2010/09/20:modf:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:modff:3:modf:3: +@:LDP man-pages:3.34:2010/09/20:modfl:3:modf:3: +○:LDP man-pages:3.34:1993/06/04:mpool:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2010/08/29:mq_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/08/29:mq_getattr:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/10/04:mq_notify:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/02/20:mq_open:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:mq_receive:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:mq_send:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/08/29:mq_setattr:3:mq_getattr:3: +@:LDP man-pages:3.34:2010/09/20:mq_timedreceive:3:mq_receive:3: +@:LDP man-pages:3.34:2010/09/20:mq_timedsend:3:mq_send:3: +○:LDP man-pages:3.34:2010/08/29:mq_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/07/26:mrand48:3:drand48:3: +@:LDP man-pages:3.34:2007/07/26:mrand48_r:3:drand48_r:3: +○:LDP man-pages:3.34:2002/07/20:mtrace:3:2003/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2002/07/20:muntrace:3:mtrace:3: +○:LDP man-pages:3.34:2010/09/20:nan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:nanf:3:nan:3: +@:LDP man-pages:3.34:2010/09/20:nanl:3:nan:3: +@:LDP man-pages:3.34:2010/09/20:nearbyint:3:rint:3: +@:LDP man-pages:3.34:2010/09/20:nearbyintf:3:rint:3: +@:LDP man-pages:3.34:2010/09/20:nearbyintl:3:rint:3: +○:LDP man-pages:3.34:1999/05/14:netlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2010/09/20:nextafter:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:nextafterf:3:nextafter:3: +@:LDP man-pages:3.34:2010/09/20:nextafterl:3:nextafter:3: +@:LDP man-pages:3.34:2010/09/20:nexttoward:3:nextafter:3: +@:LDP man-pages:3.34:2010/09/20:nexttowardf:3:nextafter:3: +@:LDP man-pages:3.34:2010/09/20:nexttowardl:3:nextafter:3: +@:LDP man-pages:3.34:2010/09/20:nftw:3:ftw:3: +○:LDP man-pages:3.34:2010/10/03:nl_langinfo:3:2001/07/15::KY4N-UCD@asahi-net.or.jp:UCHIDA Norihiro: +@:LDP man-pages:3.34:2007/07/26:nrand48:3:drand48:3: +@:LDP man-pages:3.34:2007/07/26:nrand48_r:3:drand48_r:3: +@:LDP man-pages:3.34:2009/01/15:ntohl:3:byteorder:3: +@:LDP man-pages:3.34:2009/01/15:ntohs:3:byteorder:3: +○:LDP man-pages:3.34:2008/07/12:offsetof:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/12/05:on_exit:3:2009/01/15:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/15:open_memstream:3:fmemopen:3: +@:LDP man-pages:3.34:2010/09/15:open_wmemstream:3:fmemopen:3: +○:LDP man-pages:3.34:2010/06/20:opendir:3:2007/10/14:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/11/12:openlog:3:syslog:3: +○:LDP man-pages:3.34:2010/06/13:openpty:3:2006/02/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/11/01:optarg:3:getopt:3: +@:LDP man-pages:3.34:2010/11/01:opterr:3:getopt:3: +@:LDP man-pages:3.34:2010/11/01:optind:3:getopt:3: +@:LDP man-pages:3.34:2010/11/01:optopt:3:getopt:3: +@:LDP man-pages:3.34:2003/04/04:passwd2des:3:xcrypt:3: +@:LDP man-pages:3.34:1993/04/04:pathconf:3:fpathconf:3: +@:LDP man-pages:3.34:2010/02/03:pclose:3:popen:3: +☆:LDP man-pages:3.32=>3.34:2007/07/26:perror:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/07/17:pmap_getmaps:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:pmap_getport:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:pmap_rmtcall:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:pmap_set:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:pmap_unset:3:rpc:3: +○:LDP man-pages:3.34:2010/02/03:popen:3:2008/11/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2010/09/20:posix_fallocate:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2010/09/20:posix_memalign:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/10/04:posix_openpt:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.32=>3.34:2010/09/12:pow:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/08/11:pow10:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2008/08/11:pow10f:3:pow10:3: +@:LDP man-pages:3.34:2008/08/11:pow10l:3:pow10:3: +@:LDP man-pages:3.34:2010/09/12:powf:3:pow:3: +@:LDP man-pages:3.34:2010/09/12:powl:3:pow:3: +○:LDP man-pages:3.34:2010/09/20:printf:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/07/26:profil:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2006/04/29:program_invocation_name:3:2006/07/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2006/04/29:program_invocation_short_name:3:program_invocation_name:3: +@:LDP man-pages:3.34:2010/10/06:psiginfo:3:psignal:3: +☆:LDP man-pages:3.25=>3.34:2010/10/06:psignal:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +※:LDP man-pages:3.34:2008/11/11:pthread_attr_destroy:3:pthread_attr_init:3: +※:LDP man-pages:3.34:2010/09/10:pthread_attr_getaffinity_np:3:pthread_attr_setaffinity_np:3: +※:LDP man-pages:3.34:2010/02/03:pthread_attr_getdetachstate:3:pthread_attr_setdetachstate:3: +※:LDP man-pages:3.34:2008/10/24:pthread_attr_getguardsize:3:pthread_attr_setguardsize:3: +※:LDP man-pages:3.34:2008/11/10:pthread_attr_getinheritsched:3:pthread_attr_setinheritsched:3: +※:LDP man-pages:3.34:2010/02/03:pthread_attr_getschedparam:3:pthread_attr_setschedparam:3: +※:LDP man-pages:3.34:2010/02/03:pthread_attr_getschedpolicy:3:pthread_attr_setschedpolicy:3: +※:LDP man-pages:3.34:2008/10/24:pthread_attr_getscope:3:pthread_attr_setscope:3: +※:LDP man-pages:3.34:2008/10/24:pthread_attr_getstack:3:pthread_attr_setstack:3: +※:LDP man-pages:3.34:2008/10/24:pthread_attr_getstackaddr:3:pthread_attr_setstackaddr:3: +※:LDP man-pages:3.34:2008/11/05:pthread_attr_getstacksize:3:pthread_attr_setstacksize:3: +×:LDP man-pages:3.34:2008/11/11:pthread_attr_init:3::::: +×:LDP man-pages:3.34:2010/09/10:pthread_attr_setaffinity_np:3::::: +×:LDP man-pages:3.34:2010/02/03:pthread_attr_setdetachstate:3::::: +×:LDP man-pages:3.34:2008/10/24:pthread_attr_setguardsize:3::::: +×:LDP man-pages:3.34:2008/11/10:pthread_attr_setinheritsched:3::::: +×:LDP man-pages:3.34:2010/02/03:pthread_attr_setschedparam:3::::: +×:LDP man-pages:3.34:2010/02/03:pthread_attr_setschedpolicy:3::::: +×:LDP man-pages:3.34:2008/10/24:pthread_attr_setscope:3::::: +×:LDP man-pages:3.34:2008/10/24:pthread_attr_setstack:3::::: +×:LDP man-pages:3.34:2008/10/24:pthread_attr_setstackaddr:3::::: +×:LDP man-pages:3.34:2008/11/05:pthread_attr_setstacksize:3::::: +×:LDP man-pages:3.34:2008/11/17:pthread_cancel:3::::: +※:LDP man-pages:3.34:2008/11/24:pthread_cleanup_pop:3:pthread_cleanup_push:3: +※:LDP man-pages:3.34:2008/12/04:pthread_cleanup_pop_restore_np:3:pthread_cleanup_push_defer_np:3: +×:LDP man-pages:3.34:2008/11/24:pthread_cleanup_push:3::::: +×:LDP man-pages:3.34:2008/12/04:pthread_cleanup_push_defer_np:3::::: +×:LDP man-pages:3.34:2008/11/11:pthread_create:3::::: +×:LDP man-pages:3.34:2008/11/27:pthread_detach:3::::: +×:LDP man-pages:3.34:2009/03/30:pthread_equal:3::::: +×:LDP man-pages:3.34:2009/03/30:pthread_exit:3::::: +※:LDP man-pages:3.34:2010/09/10:pthread_getaffinity_np:3:pthread_setaffinity_np:3: +×:LDP man-pages:3.34:2010/09/10:pthread_getattr_np:3::::: +※:LDP man-pages:3.34:2009/04/10:pthread_getconcurrency:3:pthread_setconcurrency:3: +×:LDP man-pages:3.34:2009/02/08:pthread_getcpuclockid:3::::: +※:LDP man-pages:3.34:2008/11/17:pthread_getschedparam:3:pthread_setschedparam:3: +×:LDP man-pages:3.34:2008/11/27:pthread_join:3::::: +×:LDP man-pages:3.34:2009/01/28:pthread_kill:3::::: +×:LDP man-pages:3.34:2010/09/09:pthread_kill_other_threads_np:3::::: +×:LDP man-pages:3.34:2008/10/24:pthread_self:3::::: +×:LDP man-pages:3.34:2010/09/10:pthread_setaffinity_np:3::::: +×:LDP man-pages:3.34:2008/11/24:pthread_setcancelstate:3::::: +※:LDP man-pages:3.34:2008/11/24:pthread_setcanceltype:3:pthread_setcancelstate:3: +×:LDP man-pages:3.34:2009/04/10:pthread_setconcurrency:3::::: +×:LDP man-pages:3.34:2008/11/17:pthread_setschedparam:3::::: +×:LDP man-pages:3.34:2008/11/06:pthread_setschedprio:3::::: +×:LDP man-pages:3.34:2009/01/25:pthread_sigmask:3::::: +×:LDP man-pages:3.34:2011/09/23:pthread_sigqueue:3::::: +×:LDP man-pages:3.34:2008/11/17:pthread_testcancel:3::::: +※:LDP man-pages:3.34:2010/09/10:pthread_timedjoin_np:3:pthread_tryjoin_np:3: +×:LDP man-pages:3.34:2010/09/10:pthread_tryjoin_np:3::::: +×:LDP man-pages:3.34:2009/04/10:pthread_yield:3::::: +○:LDP man-pages:3.34:2008/09/03:ptsname:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/09/03:ptsname_r:3:ptsname:3: +@:LDP man-pages:3.34:1993/04/04:putc:3:puts:3: +@:LDP man-pages:3.34:2008/08/29:putc_unlocked:3:unlocked_stdio:3: +@:LDP man-pages:3.34:1993/04/04:putchar:3:puts:3: +@:LDP man-pages:3.34:2008/08/29:putchar_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.34:2007/07/26:putenv:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2003/09/09:putgrent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2007/07/26:putpwent:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +○:LDP man-pages:3.34:1993/04/04:puts:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2010/02/25:putspent:3:getspnam:3: +@:LDP man-pages:3.34:2008/06/29:pututline:3:getutent:3: +@:LDP man-pages:3.34:2008/06/29:pututxline:3:getutent:3: +@:LDP man-pages:3.34:2010/09/26:putw:3:getw:3: +@:LDP man-pages:3.34:1999/07/25:putwc:3:fputwc:3: +@:LDP man-pages:3.34:2008/08/29:putwc_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.34:1999/07/25:putwchar:3:2001/11/09::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2008/08/29:putwchar_unlocked:3:unlocked_stdio:3: +○:LDP man-pages:3.34:2010/09/20:qecvt:3:2002/09/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/07/26:qecvt_r:3:ecvt_r:3: +@:LDP man-pages:3.34:2010/09/20:qfcvt:3:qecvt:3: +@:LDP man-pages:3.34:2007/07/26:qfcvt_r:3:ecvt_r:3: +@:LDP man-pages:3.34:2010/09/20:qgcvt:3:qecvt:3: +○:LDP man-pages:3.34:2009/09/15:qsort:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/12/28:queue:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2008/10/17:raise:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +☆:LDP man-pages:3.25=>3.34:2010/10/01:rand:3:2005/03/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/10/01:rand_r:3:rand:3: +○:LDP man-pages:3.34:2010/09/20:random:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: +○:LDP man-pages:3.34:2008/03/07:random_r:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2009/12/04:rawmemchr:3:memchr:3: +○:LDP man-pages:3.34:2007/12/28:rcmd:3:1999/03/01::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:1995/07/14:re_comp:3:1997/12/18::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +@:LDP man-pages:3.34:1995/07/14:re_exec:3:re_comp:3: +○:LDP man-pages:3.34:2010/09/10:readdir:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/10:readdir_r:3:readdir:3: +@:LDP man-pages:3.34:2011/09/08:realloc:3:malloc:3: +☆:LDP man-pages:3.32=>3.34:2011/09/10:realpath:3:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:1994/08/18:recno:3:1999/08/19::nakano@apm.seikei.ac.jp:NAKANO Takeo: +@:LDP man-pages:3.34:2008/05/29:regcomp:3:regex:3: +@:LDP man-pages:3.34:2008/05/29:regerror:3:regex:3: +○:LDP man-pages:3.34:2008/05/29:regex:3:2005/03/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/05/29:regexec:3:regex:3: +@:LDP man-pages:3.34:2008/05/29:regfree:3:regex:3: +@:LDP man-pages:3.34:2008/07/17:registerrpc:3:rpc:3: +○:LDP man-pages:3.34:2010/09/20:remainder:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:remainderf:3:remainder:3: +@:LDP man-pages:3.34:2010/09/20:remainderl:3:remainder:3: +○:LDP man-pages:3.34:2008/12/03:remove:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2010/09/09:remque:3:insque:3: +○:LDP man-pages:3.34:2010/09/20:remquo:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:remquof:3:remquo:3: +@:LDP man-pages:3.34:2010/09/20:remquol:3:remquo:3: +@:LDP man-pages:3.34:2010/06/17:res_init:3:resolver:3: +@:LDP man-pages:3.34:2010/06/17:res_mkquery:3:resolver:3: +@:LDP man-pages:3.34:2010/06/17:res_query:3:resolver:3: +@:LDP man-pages:3.34:2010/06/17:res_querydomain:3:resolver:3: +@:LDP man-pages:3.34:2010/06/17:res_search:3:resolver:3: +@:LDP man-pages:3.34:2010/06/17:res_send:3:resolver:3: +○:LDP man-pages:3.34:2010/06/17:resolver:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:1993/11/29:rewind:3:fseek:3: +○:LDP man-pages:3.34:1995/06/11:rewinddir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +○:LDP man-pages:3.34:2010/09/10:rexec:3:2005/12/28::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/21:rindex:3:index:3: +○:LDP man-pages:3.34:2010/09/20:rint:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:rintf:3:rint:3: +@:LDP man-pages:3.34:2010/09/20:rintl:3:rint:3: +○:LDP man-pages:3.34:2010/09/20:round:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:roundf:3:round:3: +@:LDP man-pages:3.34:2010/09/20:roundl:3:round:3: +○:LDP man-pages:3.34:2008/07/17:rpc:3:2001/11/09::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.34:2007/07/26:rpmatch:3:2006/07/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/12/28:rresvport:3:rcmd:3: +○:LDP man-pages:3.34:2010/02/25:rtime:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2010/01/11:rtnetlink:3:1999/08/20::nakano@apm.seikei.ac.jp:NAKANO Takeo: +@:LDP man-pages:3.34:2007/12/28:ruserok:3:rcmd:3: +○:LDP man-pages:3.34:2010/09/20:scalb:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:scalbf:3:scalb:3: +@:LDP man-pages:3.34:2010/09/20:scalbl:3:scalb:3: +×:LDP man-pages:3.34:2010/09/20:scalbln:3::::: +※:LDP man-pages:3.34:2010/09/20:scalblnf:3:scalbln:3: +※:LDP man-pages:3.34:2010/09/20:scalblnl:3:scalbln:3: +※:LDP man-pages:3.34:2010/09/20:scalbn:3:scalbln:3: +※:LDP man-pages:3.34:2010/09/20:scalbnf:3:scalbln:3: +※:LDP man-pages:3.34:2010/09/20:scalbnl:3:scalbln:3: +☆:LDP man-pages:3.32=>3.34:2011/09/08:scandir:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:scanf:3:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2010/10/31:sched_getcpu:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2007/07/26:seed48:3:drand48:3: +@:LDP man-pages:3.34:2007/07/26:seed48_r:3:drand48_r:3: +○:LDP man-pages:3.34:2009/03/11:seekdir:3:1997/12/24::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +○:LDP man-pages:3.34:2006/03/25:sem_close:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2006/03/25:sem_destroy:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2006/03/25:sem_getvalue:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/07/27:sem_init:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/02/20:sem_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/03/30:sem_post:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/02/25:sem_timedwait:3:sem_wait:3: +@:LDP man-pages:3.34:2010/02/25:sem_trywait:3:sem_wait:3: +○:LDP man-pages:3.34:2006/03/25:sem_unlink:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/02/25:sem_wait:3:2006/04/24::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2003/09/09:setaliasent:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2008/06/26:setbuf:3:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: +@:LDP man-pages:3.34:2008/06/26:setbuffer:3:setbuf:3: +○:LDP man-pages:3.34:2009/09/20:setenv:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2002/02/28:setfsent:3:getfsent:3: +@:LDP man-pages:3.34:2010/10/21:setgrent:3:getgrent:3: +@:LDP man-pages:3.34:2010/10/04:sethostent:3:gethostbyname:3: +@:LDP man-pages:3.34:2010/09/20:sethostid:3:gethostid:3: +○:LDP man-pages:3.34:2009/06/26:setjmp:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2003/04/04:setkey:3:encrypt:3: +@:LDP man-pages:3.34:2003/04/04:setkey_r:3:encrypt:3: +@:LDP man-pages:3.34:2008/06/26:setlinebuf:3:setbuf:3: +○:LDP man-pages:3.34:2008/12/05:setlocale:3:2002/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2001/10/05:setlogmask:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2009/09/15:setmntent:3:getmntent:3: +@:LDP man-pages:3.34:2008/08/19:setnetent:3:getnetent:3: +○:LDP man-pages:3.34:2007/07/26:setnetgrent:3:2005/03/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/19:setprotoent:3:getprotoent:3: +@:LDP man-pages:3.34:2010/10/21:setpwent:3:getpwent:3: +@:LDP man-pages:3.34:2008/08/19:setrpcent:3:getrpcent:3: +@:LDP man-pages:3.34:2008/08/19:setservent:3:getservent:3: +@:LDP man-pages:3.34:2010/02/25:setspent:3:getspnam:3: +@:LDP man-pages:3.34:2010/09/20:setstate:3:random:3: +@:LDP man-pages:3.34:2008/03/07:setstate_r:3:random_r:3: +@:LDP man-pages:3.34:2002/07/18:setttyent:3:getttyent:3: +@:LDP man-pages:3.34:2007/07/26:setusershell:3:getusershell:3: +@:LDP man-pages:3.34:2008/06/29:setutent:3:getutent:3: +@:LDP man-pages:3.34:2008/06/29:setutxent:3:getutent:3: +@:LDP man-pages:3.34:2008/06/26:setvbuf:3:setbuf:3: +@:LDP man-pages:3.34:2010/02/25:sgetspent:3:getspnam:3: +@:LDP man-pages:3.34:2010/02/25:sgetspent_r:3:getspnam:3: +○:LDP man-pages:3.34:2009/02/25:shm_open:3:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2009/02/25:shm_unlink:3:shm_open:3: +@:LDP man-pages:3.34:2008/09/01:sigaddset:3:sigsetops:3: +@:LDP man-pages:3.34:2008/09/01:sigandset:3:sigsetops:3: +@:LDP man-pages:3.34:2007/07/26:sigblock:3:sigvec:3: +@:LDP man-pages:3.34:2008/09/01:sigdelset:3:sigsetops:3: +@:LDP man-pages:3.34:2008/09/01:sigemptyset:3:sigsetops:3: +@:LDP man-pages:3.34:2008/09/01:sigfillset:3:sigsetops:3: +@:LDP man-pages:3.34:2007/07/26:siggetmask:3:sigvec:3: +@:LDP man-pages:3.34:2010/09/20:sighold:3:sigset:3: +@:LDP man-pages:3.34:2010/09/20:sigignore:3:sigset:3: +☆:LDP man-pages:3.32=>3.34:2011/09/09:siginterrupt:3:1998/05/24::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +@:LDP man-pages:3.34:2008/09/01:sigisemptyset:3:sigsetops:3: +@:LDP man-pages:3.34:2008/09/01:sigismember:3:sigsetops:3: +@:LDP man-pages:3.34:2009/01/13:siglongjmp:3:longjmp:3: +@:LDP man-pages:3.34:2007/07/26:sigmask:3:sigvec:3: +○:LDP man-pages:3.34:2010/09/20:signbit:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/11:signgam:3:lgamma:3: +○:LDP man-pages:3.34:2009/02/04:significand:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2009/02/04:significandf:3:significand:3: +@:LDP man-pages:3.34:2009/02/04:significandl:3:significand:3: +@:LDP man-pages:3.34:2008/09/01:sigorset:3:sigsetops:3: +○:LDP man-pages:3.34:2010/09/12:sigpause:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2011/09/18:sigqueue:3::::: +@:LDP man-pages:3.34:2010/09/20:sigrelse:3:sigset:3: +○:LDP man-pages:3.34:2010/09/20:sigset:3:2005/12/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2009/06/26:sigsetjmp:3:setjmp:3: +@:LDP man-pages:3.34:2007/07/26:sigsetmask:3:sigvec:3: +○:LDP man-pages:3.34:2008/09/01:sigsetops:3:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/26:sigstack:3:sigaltstack:2: +○:LDP man-pages:3.34:2007/07/26:sigvec:3:2005/12/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/10:sigwait:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/11:sin:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/08/11:sincos:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/11:sincosf:3:sincos:3: +@:LDP man-pages:3.34:2008/08/11:sincosl:3:sincos:3: +@:LDP man-pages:3.34:2010/09/11:sinf:3:sin:3: +○:LDP man-pages:3.34:2010/09/20:sinh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:sinhf:3:sinh:3: +@:LDP man-pages:3.34:2010/09/20:sinhl:3:sinh:3: +@:LDP man-pages:3.34:2010/09/11:sinl:3:sin:3: +○:LDP man-pages:3.34:2010/02/03:sleep:3:1997/01/21::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: +@:LDP man-pages:3.34:2010/09/20:snprintf:3:printf:3: +○:LDP man-pages:3.34:2008/12/03:sockatmark:3:2006/08/19::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/09/20:sprintf:3:printf:3: +○:LDP man-pages:3.34:2010/09/20:sqrt:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:sqrtf:3:sqrt:3: +@:LDP man-pages:3.34:2010/09/20:sqrtl:3:sqrt:3: +@:LDP man-pages:3.34:2010/10/01:srand:3:rand:3: +@:LDP man-pages:3.34:2007/07/26:srand48:3:drand48:3: +@:LDP man-pages:3.34:2007/07/26:srand48_r:3:drand48_r:3: +@:LDP man-pages:3.34:2010/09/20:srandom:3:random:3: +@:LDP man-pages:3.34:2008/03/07:srandom_r:3:random_r:3: +@:LDP man-pages:3.34:2010/09/20:sscanf:3:scanf:3: +@:LDP man-pages:3.34:2007/07/26:ssignal:3:gsignal:3: +○:LDP man-pages:3.34:2003/08/22:statvfs:3:2005/02/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2001/10/14:stdarg:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2008/07/14:stderr:3:stdin:3: +○:LDP man-pages:3.34:2008/07/14:stdin:3:2005/09/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2001/12/26:stdio:3:2004/02/06::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2001/12/16:stdio_ext:3:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/07/14:stdout:3:stdin:3: +○:LDP man-pages:3.34:2010/09/15:stpcpy:3:1997/12/26::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +○:LDP man-pages:3.34:2010/09/15:stpncpy:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:2010/09/20:strcasecmp:3:1997/12/25::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +@:LDP man-pages:3.34:2010/09/20:strcasestr:3:strstr:3: +○:LDP man-pages:3.34:2010/09/20:strcat:3:2005/03/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2010/09/20:strchr:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:strchrnul:3:strchr:3: +○:LDP man-pages:3.34:2010/09/20:strcmp:3:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:strcoll:3:2007/06/01::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:strcpy:3:2008/07/23::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2010/09/20:strcspn:3:strspn:3: +○:LDP man-pages:3.34:2010/09/26:strdup:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2010/09/26:strdupa:3:strdup:3: +○:LDP man-pages:3.34:2009/03/30:strerror:3:2005/12/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2009/03/30:strerror_r:3:strerror:3: +○:LDP man-pages:3.34:2000/12/05:strfmon:3:2001/02/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2010/09/20:strfry:3:1998/05/25::motoki@hal.t.u-tokyo.ac.jp:Akihiro Motoki: +○:LDP man-pages:3.34:2010/01/17:strftime:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/02/25:string:3:1997/01/20::yoshino@civil.jcn.nihon-u.ac.jp:YOSHINO Takashi: +☆:LDP man-pages:3.32=>3.34:2011/09/10:strlen:3:1997/01/20::tyoshino@eng.toyo.ac.jp:YOSHINO Takashi: +@:LDP man-pages:3.34:2010/09/20:strncasecmp:3:strcasecmp:3: +@:LDP man-pages:3.34:2010/09/20:strncat:3:strcat:3: +@:LDP man-pages:3.34:2010/09/20:strncmp:3:strcmp:3: +@:LDP man-pages:3.34:2010/09/20:strncpy:3:strcpy:3: +@:LDP man-pages:3.34:2010/09/26:strndup:3:strdup:3: +@:LDP man-pages:3.34:2010/09/26:strndupa:3:strdup:3: +☆:LDP man-pages:3.32=>3.34:2011/09/10:strnlen:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:2010/09/20:strpbrk:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata: +○:LDP man-pages:3.34:2009/12/05:strptime:3:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/09/20:strrchr:3:strchr:3: +○:LDP man-pages:3.34:2010/09/20:strsep:3:2009/03/05::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2010/09/15:strsignal:3:1999/12/25::argrath@yo.rim.or.jp:Kentaro Shirakata: +○:LDP man-pages:3.34:2010/09/20:strspn:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +○:LDP man-pages:3.34:2010/09/20:strstr:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2010/09/20:strtod:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:strtof:3:strtod:3: +○:LDP man-pages:3.34:2003/11/28:strtoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2010/09/27:strtok:3:2005/11/19:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/27:strtok_r:3:strtok:3: +○:LDP man-pages:3.34:2010/09/20:strtol:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:strtold:3:strtod:3: +@:LDP man-pages:3.34:2010/09/20:strtoll:3:strtol:3: +@:LDP man-pages:3.34:2010/09/20:strtoq:3:strtol:3: +☆:LDP man-pages:3.32=>3.34:2011/09/15:strtoul:3:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/15:strtoull:3:strtoul:3: +@:LDP man-pages:3.34:2003/11/28:strtoumax:3:strtoimax:3: +@:LDP man-pages:3.34:2011/09/15:strtouq:3:strtoul:3: +○:LDP man-pages:3.34:2001/12/19:strverscmp:3:2002/09/22::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:strxfrm:3:1999/03/24::ss236rx@ymg.urban.ne.jp:Shouichi Saito: +@:LDP man-pages:3.34:2008/07/17:svc_destroy:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svc_freeargs:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svc_getargs:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svc_getcaller:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svc_getreq:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svc_getreqset:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svc_register:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svc_run:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svc_sendreply:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svc_unregister:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svcerr_auth:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svcerr_decode:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svcerr_noproc:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svcerr_noprog:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svcerr_progvers:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svcerr_systemerr:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svcerr_weakauth:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svcfd_create:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svcraw_create:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svctcp_create:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svcudp_bufcreate:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:svcudp_create:3:rpc:3: +○:LDP man-pages:3.34:2001/12/15:swab:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2009/03/31:swapcontext:3:makecontext:3: +@:LDP man-pages:3.34:2011/09/17:swprintf:3:wprintf:3: +@:LDP man-pages:3.34:2007/07/26:sys_errlist:3:perror:3: +@:LDP man-pages:3.34:2007/07/26:sys_nerr:3:perror:3: +☆:LDP man-pages:3.32=>3.34:2007/12/12:sysconf:3:2005/03/31::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/11/12:syslog:3:2008/07/24:o:argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2010/09/10:system:3:2005/03/12:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/05/04:sysv_signal:3:2007/06/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/11:tan:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/11:tanf:3:tan:3: +○:LDP man-pages:3.34:2010/09/20:tanh:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:tanhf:3:tanh:3: +@:LDP man-pages:3.34:2010/09/20:tanhl:3:tanh:3: +@:LDP man-pages:3.34:2010/09/11:tanl:3:tan:3: +@:LDP man-pages:3.34:2011/09/08:tcdrain:3:termios:3: +@:LDP man-pages:3.34:2011/09/08:tcflow:3:termios:3: +@:LDP man-pages:3.34:2011/09/08:tcflush:3:termios:3: +@:LDP man-pages:3.34:2011/09/08:tcgetattr:3:termios:3: +○:LDP man-pages:3.34:2003/01/28:tcgetpgrp:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/10:tcgetsid:3:2003/08/30::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2011/09/08:tcsendbreak:3:termios:3: +@:LDP man-pages:3.34:2011/09/08:tcsetattr:3:termios:3: +@:LDP man-pages:3.34:2003/01/28:tcsetpgrp:3:tcgetpgrp:3: +@:LDP man-pages:3.34:2008/09/23:tdelete:3:tsearch:3: +@:LDP man-pages:3.34:2008/09/23:tdestroy:3:tsearch:3: +○:LDP man-pages:3.34:2009/03/11:telldir:3:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/07/26:tempnam:3:2006/07/26::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2011/09/08:termios:3:2007/05/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/09/23:tfind:3:tsearch:3: +☆:LDP man-pages:3.32=>3.34:2010/09/20:tgamma:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:tgammaf:3:tgamma:3: +@:LDP man-pages:3.34:2010/09/20:tgammal:3:tgamma:3: +○:LDP man-pages:3.34:2007/07/26:timegm:3:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +@:LDP man-pages:3.34:2007/07/26:timelocal:3:timegm:3: +○:LDP man-pages:3.34:2010/02/25:timeradd:3:2007/10/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/02/25:timerclear:3:timeradd:3: +@:LDP man-pages:3.34:2010/02/25:timercmp:3:timeradd:3: +@:LDP man-pages:3.34:2010/02/25:timerisset:3:timeradd:3: +@:LDP man-pages:3.34:2010/02/25:timersub:3:timeradd:3: +@:LDP man-pages:3.34:2010/02/25:timezone:3:tzset:3: +○:LDP man-pages:3.34:2008/07/14:tmpfile:3:2001/12/14:o:ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.34:2010/09/10:tmpnam:3:2006/07/26:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/10:tmpnam_r:3:tmpnam:3: +○:LDP man-pages:3.34:2009/03/15:toascii:3:1997/12/16::nishi@rpts.cl.nec.co.jp:HIROFUMI Nishizuka: +@:LDP man-pages:3.34:1993/04/04:tolower:3:toupper:3: +○:LDP man-pages:3.34:1993/04/04:toupper:3:1997/04/29::rui@linux.or.jp:Ueyama Rui: +○:LDP man-pages:3.34:1999/07/25:towctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:towlower:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:towupper:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:2010/09/20:trunc:3:2008/09/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/09/20:truncf:3:trunc:3: +@:LDP man-pages:3.34:2010/09/20:truncl:3:trunc:3: +○:LDP man-pages:3.34:2008/09/23:tsearch:3:2002/02/14::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.34:2008/07/14:ttyname:3:2008/07/24::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2008/07/14:ttyname_r:3:ttyname:3: +○:LDP man-pages:3.34:2010/09/20:ttyslot:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2008/09/23:twalk:3:tsearch:3: +@:LDP man-pages:3.34:2010/02/25:tzname:3:tzset:3: +☆:LDP man-pages:3.32=>3.34:2010/02/25:tzset:3:2007/01/07::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/20:ualarm:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/02/25:ulckpwdf:3:getspnam:3: +○:LDP man-pages:3.34:2008/08/06:ulimit:3:1998/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2010/02/10:undocumented:3:2005/02/21::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/06:ungetc:3:gets:3: +○:LDP man-pages:3.34:1999/09/19:ungetwc:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:2008/08/29:unlocked_stdio:3:2001/11/03::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/06/14:unlockpt:3:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2009/09/20:unsetenv:3:setenv:3: +○:LDP man-pages:3.34:2008/07/02:updwtmp:3:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2008/07/02:updwtmpx:3:updwtmp:3: +☆:LDP man-pages:3.31=>3.34:2010/12/03:usleep:3:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/06/29:utmpname:3:getutent:3: +@:LDP man-pages:3.34:2008/06/29:utmpxname:3:getutent:3: +@:LDP man-pages:3.34:2001/10/14:va_arg:3:stdarg:3: +@:LDP man-pages:3.34:2001/10/14:va_copy:3:stdarg:3: +@:LDP man-pages:3.34:2001/10/14:va_end:3:stdarg:3: +@:LDP man-pages:3.34:2001/10/14:va_start:3:stdarg:3: +@:LDP man-pages:3.34:2010/09/20:valloc:3:posix_memalign:3: +@:LDP man-pages:3.34:2001/12/18:vasprintf:3:asprintf:3: +@:LDP man-pages:3.34:2010/09/15:vdprintf:3:dprintf:3: +@:LDP man-pages:3.34:2011/09/15:verr:3:err:3: +@:LDP man-pages:3.34:2011/09/15:verrx:3:err:3: +@:LDP man-pages:3.34:2011/09/08:versionsort:3:scandir:3: +@:LDP man-pages:3.34:2010/09/20:vfprintf:3:printf:3: +@:LDP man-pages:3.34:2010/09/20:vfscanf:3:scanf:3: +@:LDP man-pages:3.34:2011/09/17:vfwprintf:3:wprintf:3: +@:LDP man-pages:3.34:2011/09/10:vlimit:3:getrlimit:2: +@:LDP man-pages:3.34:2010/09/20:vprintf:3:printf:3: +@:LDP man-pages:3.34:2010/09/20:vscanf:3:scanf:3: +@:LDP man-pages:3.34:2010/09/20:vsnprintf:3:printf:3: +@:LDP man-pages:3.34:2010/09/20:vsprintf:3:printf:3: +@:LDP man-pages:3.34:2010/09/20:vsscanf:3:scanf:3: +@:LDP man-pages:3.34:2011/09/17:vswprintf:3:wprintf:3: +@:LDP man-pages:3.34:2008/11/12:vsyslog:3:syslog:3: +@:LDP man-pages:3.34:2010/09/26:vtimes:3:getrusage:2: +@:LDP man-pages:3.34:2011/09/15:vwarn:3:err:3: +@:LDP man-pages:3.34:2011/09/15:vwarnx:3:err:3: +@:LDP man-pages:3.34:2011/09/17:vwprintf:3:wprintf:3: +@:LDP man-pages:3.34:2011/09/15:warn:3:err:3: +@:LDP man-pages:3.34:2011/09/15:warnx:3:err:3: +○:LDP man-pages:3.34:2010/09/15:wcpcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:2010/09/15:wcpncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcrtomb:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:2010/09/15:wcscasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcscat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcschr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcscmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcscpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcscspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:2010/09/15:wcsdup:3:2004/06/13::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:1999/07/25:wcslen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:2010/09/15:wcsncasecmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcsncat:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcsncmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcsncpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +☆:LDP man-pages:3.32=>3.34:2011/09/21:wcsnlen:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:2010/09/15:wcsnrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcspbrk:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcsrchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcsrtombs:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcsspn:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcsstr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:2003/11/01:wcstoimax:3:2004/09/14::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:1999/07/25:wcstok:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +☆:LDP man-pages:3.32=>3.34:2011/09/08:wcstombs:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +@:LDP man-pages:3.34:2003/11/01:wcstoumax:3:wcstoimax:3: +○:LDP man-pages:3.34:2010/09/10:wcswidth:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +☆:LDP man-pages:3.32=>3.34:2011/09/22:wctob:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wctomb:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:1999/07/25:wctrans:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wctype:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wcwidth:3:2002/08/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:1999/07/25:wmemchr:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wmemcmp:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wmemcpy:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:1999/07/25:wmemmove:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +@:LDP man-pages:3.34:2008/08/12:wmempcpy:3:mempcpy:3: +○:LDP man-pages:3.34:1999/07/25:wmemset:3:1999/10/29::fujiwara@linux.or.jp:FUJIWARA Teruyoshi: +○:LDP man-pages:3.34:2008/07/14:wordexp:3:2004/09/29::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2008/07/14:wordfree:3:wordexp:3: +☆:LDP man-pages:3.32=>3.34:2011/09/17:wprintf:3:2000/01/11::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:2003/04/04:xcrypt:3:2004/10/16::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2003/04/04:xdecrypt:3:xcrypt:3: +○:LDP man-pages:3.34:2007/12/30:xdr:3:2000/01/14::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +@:LDP man-pages:3.34:2008/07/17:xdr_accepted_reply:3:rpc:3: +@:LDP man-pages:3.34:2007/12/30:xdr_array:3:xdr:3: +@:LDP man-pages:3.34:2008/07/17:xdr_authunix_parms:3:rpc:3: +@:LDP man-pages:3.34:2007/12/30:xdr_bool:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_bytes:3:xdr:3: +@:LDP man-pages:3.34:2008/07/17:xdr_callhdr:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:xdr_callmsg:3:rpc:3: +@:LDP man-pages:3.34:2007/12/30:xdr_char:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_destroy:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_double:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_enum:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_float:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_free:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_getpos:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_inline:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_int:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_long:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_opaque:3:xdr:3: +@:LDP man-pages:3.34:2008/07/17:xdr_opaque_auth:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:xdr_pmap:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:xdr_pmaplist:3:rpc:3: +@:LDP man-pages:3.34:2007/12/30:xdr_pointer:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_reference:3:xdr:3: +@:LDP man-pages:3.34:2008/07/17:xdr_rejected_reply:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:xdr_replymsg:3:rpc:3: +@:LDP man-pages:3.34:2007/12/30:xdr_setpos:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_short:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_string:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_u_char:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_u_int:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_u_long:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_u_short:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_union:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_vector:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_void:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdr_wrapstring:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdrmem_create:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdrrec_create:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdrrec_endofrecord:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdrrec_eof:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdrrec_skiprecord:3:xdr:3: +@:LDP man-pages:3.34:2007/12/30:xdrstdio_create:3:xdr:3: +@:LDP man-pages:3.34:2003/04/04:xencrypt:3:xcrypt:3: +@:LDP man-pages:3.34:2008/07/17:xprt_register:3:rpc:3: +@:LDP man-pages:3.34:2008/07/17:xprt_unregister:3:rpc:3: +○:LDP man-pages:3.34:2008/08/10:y0:3:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/08/10:y0f:3:y0:3: +@:LDP man-pages:3.34:2008/08/10:y0l:3:y0:3: +@:LDP man-pages:3.34:2008/08/10:y1:3:y0:3: +@:LDP man-pages:3.34:2008/08/10:y1f:3:y0:3: +@:LDP man-pages:3.34:2008/08/10:y1l:3:y0:3: +@:LDP man-pages:3.34:2008/08/10:yn:3:y0:3: +@:LDP man-pages:3.34:2008/08/10:ynf:3:y0:3: +@:LDP man-pages:3.34:2008/08/10:ynl:3:y0:3: +×:LDP man-pages:3.34:2011/09/21:cciss:4::::: +○:LDP man-pages:3.34:1994/10/31:console:4:2002/01/14:o:argrath@ub32.org:Kentaro Shirakata: +☆:LDP man-pages:3.32=>3.34:2011/09/15:console_codes:4:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2009/02/28:console_ioctl:4:2008/07/22::argrath@ub32.org:Kentaro Shirakata: +×:LDP man-pages:3.34:2009/03/31:cpuid:4::::: +○:LDP man-pages:3.34:2000/03/01:dsp56k:4:2000/07/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +@:LDP man-pages:3.34:2009/02/01:epoll:4:epoll:7: +○:LDP man-pages:3.34:2010/08/29:fd:4:1998/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +@:LDP man-pages:3.34:2008/12/03:fifo:4:fifo:7: +○:LDP man-pages:3.34:1997/08/02:full:4:2006/07/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2002/12/31:futex:4:futex:7: +○:LDP man-pages:3.34:1992/12/17:hd:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +×:LDP man-pages:3.34:2011/09/21:hpsa:4::::: +○:LDP man-pages:3.34:2010/09/04:initrd:4:2005/10/09:o:amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/10/23:intro:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +@:LDP man-pages:3.34:1992/11/21:kmem:4:mem:4: +○:LDP man-pages:3.34:1995/01/15:lp:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +○:LDP man-pages:3.34:1992/11/21:mem:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +☆:LDP man-pages:3.32=>3.34:1996/02/10:mouse:4:1999/03/24:o:ss236rx@ymg.urban.ne.jp:Shouichi Saito: +×:LDP man-pages:3.34:2009/03/31:msr:4::::: +○:LDP man-pages:3.34:2009/02/23:null:4:1998/02/05:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +@:LDP man-pages:3.34:1992/11/21:port:4:mem:4: +@:LDP man-pages:3.34:2002/10/09:ptmx:4:pts:4: +○:LDP man-pages:3.34:2002/10/09:pts:4:2003/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:1992/11/21:ram:4:1997/01/12:o:ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +○:LDP man-pages:3.34:2010/08/29:random:4:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/02/25:rtc:4:2007/02/08::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:1992/12/17:sd:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +○:LDP man-pages:3.34:2007/11/25:sk98lin:4:2007/06/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/04:st:4:2005/06/12::nakano@st.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2003/04/07:tty:4:2003/09/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:1992/12/19:ttyS:4:1998/02/05::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +○:LDP man-pages:3.34:2008/10/29:tty_ioctl:4:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2010/08/29:urandom:4:random:4: +○:LDP man-pages:3.34:2007/12/17:vcs:4:2001/02/11::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +@:LDP man-pages:3.34:2007/12/17:vcsa:4:vcs:4: +○:LDP man-pages:3.34:1996/10/22:wavelan:4:1998/02/10::ishikawa@linux.or.jp:ISHIKAWA Mutsumi: +@:LDP man-pages:3.34:2009/02/23:zero:4:null:4: +○:LDP man-pages:3.34:2008/06/15:acct:5:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:1994/11/28:charmap:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2011/09/16:complex:5:complex:7: +☆:LDP man-pages:3.31=>3.34:2010/11/15:core:5:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2001/12/26:dir_colors:5:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: +☆:LDP man-pages:3.24=>3.34:2010/06/19:elf:5:2005/11/03::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:2009/07/25:environ:5:environ:7: +☆:LDP man-pages:3.24=>3.34:2010/05/24:filesystems:5:2008/02/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2010/05/24:fs:5:filesystems:5: +○:LDP man-pages:3.34:2000/08/27:ftpusers:5:2001/03/12::nakano@apm.seikei.ac.jp:NAKANO Takeo: +☆:LDP man-pages:3.29=>3.34:2010/10/21:group:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2003/08/23:host.conf:5:2003/10/15::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2002/06/16:hosts:5:2005/09/06::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2003/08/24:hosts.equiv:5:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/10/23:intro:5:1998/10/13::nakano@apm.seikei.ac.jp:NAKANO Takeo: +@:LDP man-pages:3.34:2009/01/26:ipc:5:svipc:7: +○:LDP man-pages:3.34:1993/07/24:issue:5:1998/07/25::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2008/06/17:locale:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:1992/12/29:motd:5:1998/2/4::nagoya@cc.hit-u.ac.jp:Hiroaki Nagoya: +×:LDP man-pages:3.34:2008/09/04:networks:5::::: +○:LDP man-pages:3.34:1992/12/29:nologin:5:1998/02/18::rui@linux.or.jp:Ueyama Rui: +○:LDP man-pages:3.34:1999/10/01:nscd.conf:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:1999/01/17:nsswitch.conf:5:2001/10/18::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +※:LDP man-pages:3.34:2008/08/15:numa_maps:5:numa:7: +☆:LDP man-pages:3.29=>3.34:2010/10/21:passwd:5:2006/07/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.34:2011/09/15:proc:5:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/09/23:protocols:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2009/03/01:resolv.conf:5:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2009/03/01:resolver:5:resolv.conf:5: +○:LDP man-pages:3.34:1985/09/26:rpc:5:2008/07/22::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:1992/12/29:securetty:5:2003/01/08::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/05/22:services:5:2002/08/14::amotoki@dd.iij4u.or.jp:Akihiro Motoki: +○:LDP man-pages:3.34:1993/11/21:shells:5:2000/12/11::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2001/06/19:slabinfo:5:2001/09/10::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:1996/10/21:termcap:5:2000/10/12::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:1993/07/24:ttytype:5:1998/02/10::nakano@apm.seikei.ac.jp:NAKANO Takeo: +☆:LDP man-pages:3.25=>3.34:2010/08/31:tzfile:5:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2008/10/10:utmp:5:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2008/10/10:utmpx:5:utmp:5: +@:LDP man-pages:3.34:2008/10/10:wtmp:5:utmp:5: +○:LDP man-pages:3.34:2007/10/23:intro:6:1997/11/15::pessi@kmc.kyoto-u.ac.jp:II Ryouta: +×:LDP man-pages:3.34:2010/10/02:aio:7::::: +×:LDP man-pages:3.34:2010/09/20:armscii-8:7::::: +☆:LDP man-pages:3.32=>3.34:2008/11/25:arp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/02/12:ascii:7:2006/04/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/19:boot:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/12/16:bootparam:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2011/09/07:capabilities:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/06/03:charsets:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata: +☆:LDP man-pages:3.32=>3.34:2011/09/16:complex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2010/09/20:cp1251:7::::: +×:LDP man-pages:3.34:2008/11/12:cpuset:7::::: +☆:LDP man-pages:3.32=>3.34:2008/06/03:credentials:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/11/20:ddp:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2009/07/25:environ:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/02/01:epoll:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2011/09/17:feature_test_macros:7:2007/10/11::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/12/03:fifo:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2002/12/31:futex:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +※:LDP man-pages:3.34:2009/01/13:glibc:7:libc:7: +○:LDP man-pages:3.34:2003/08/24:glob:7:2003/09/28::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2009/03/30:hier:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +×:LDP man-pages:3.34:2010/11/07:hostname:7::::: +○:LDP man-pages:3.34:2010/02/25:icmp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.25=>3.34:2010/11/12:inotify:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:1993/04/23:intro:7:2005/12/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.25=>3.34:2011/09/22:ip:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2011/09/08:ipv6:7:2006/01/14::ysato444@yahoo.co.jp:Yuichi SATO: +@:LDP man-pages:3.34:1999/05/31:iso-8859-1:7:iso_8859-1:7: +※:LDP man-pages:3.34:2010/09/20:iso-8859-10:7:iso_8859-10:7: +※:LDP man-pages:3.34:2010/09/20:iso-8859-11:7:iso_8859-11:7: +※:LDP man-pages:3.34:2010/09/20:iso-8859-13:7:iso_8859-13:7: +※:LDP man-pages:3.34:2010/09/20:iso-8859-14:7:iso_8859-14:7: +@:LDP man-pages:3.34:1999/05/31:iso-8859-15:7:iso_8859-15:7: +@:LDP man-pages:3.34:2003/03/05:iso-8859-16:7:iso_8859-16:7: +@:LDP man-pages:3.34:2007/11/25:iso-8859-2:7:iso_8859-2:7: +※:LDP man-pages:3.34:2010/09/20:iso-8859-3:7:iso_8859-3:7: +※:LDP man-pages:3.34:2009/01/24:iso-8859-4:7:iso_8859-4:7: +※:LDP man-pages:3.34:2010/09/20:iso-8859-5:7:iso_8859-5:7: +※:LDP man-pages:3.34:2010/09/20:iso-8859-6:7:iso_8859-6:7: +@:LDP man-pages:3.34:2008/10/30:iso-8859-7:7:iso_8859-7:7: +※:LDP man-pages:3.34:2010/09/20:iso-8859-8:7:iso_8859-8:7: +@:LDP man-pages:3.34:2002/09/24:iso-8859-9:7:iso_8859-9:7: +○:LDP man-pages:3.34:1999/05/31:iso_8859-1:7:2002/09/14::argrath@ub32.org:Kentaro Shirakata: +×:LDP man-pages:3.34:2010/09/20:iso_8859-10:7::::: +×:LDP man-pages:3.34:2010/09/20:iso_8859-11:7::::: +×:LDP man-pages:3.34:2010/09/20:iso_8859-13:7::::: +×:LDP man-pages:3.34:2010/09/20:iso_8859-14:7::::: +○:LDP man-pages:3.34:1999/05/31:iso_8859-15:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +○:LDP man-pages:3.34:2003/03/05:iso_8859-16:7:2003/09/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/11/25:iso_8859-2:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +×:LDP man-pages:3.34:2010/09/20:iso_8859-3:7::::: +×:LDP man-pages:3.34:2009/01/24:iso_8859-4:7::::: +×:LDP man-pages:3.34:2010/09/20:iso_8859-5:7::::: +×:LDP man-pages:3.34:2010/09/20:iso_8859-6:7::::: +○:LDP man-pages:3.34:2008/10/30:iso_8859-7:7:2002/09/28::hanataka@abyss.rim.or.jp:HANATAKA Shinya: +×:LDP man-pages:3.34:2010/09/20:iso_8859-8:7::::: +○:LDP man-pages:3.34:2002/09/24:iso_8859-9:7:2003/01/20::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:1999/05/31:iso_8859_1:7:iso_8859-1:7: +※:LDP man-pages:3.34:2010/09/20:iso_8859_10:7:iso_8859-10:7: +※:LDP man-pages:3.34:2010/09/20:iso_8859_11:7:iso_8859-11:7: +※:LDP man-pages:3.34:2010/09/20:iso_8859_13:7:iso_8859-13:7: +※:LDP man-pages:3.34:2010/09/20:iso_8859_14:7:iso_8859-14:7: +@:LDP man-pages:3.34:1999/05/31:iso_8859_15:7:iso_8859-15:7: +@:LDP man-pages:3.34:2003/03/05:iso_8859_16:7:iso_8859-16:7: +@:LDP man-pages:3.34:2007/11/25:iso_8859_2:7:iso_8859-2:7: +※:LDP man-pages:3.34:2010/09/20:iso_8859_3:7:iso_8859-3:7: +※:LDP man-pages:3.34:2009/01/24:iso_8859_4:7:iso_8859-4:7: +※:LDP man-pages:3.34:2010/09/20:iso_8859_5:7:iso_8859-5:7: +※:LDP man-pages:3.34:2010/09/20:iso_8859_6:7:iso_8859-6:7: +@:LDP man-pages:3.34:2008/10/30:iso_8859_7:7:iso_8859-7:7: +※:LDP man-pages:3.34:2010/09/20:iso_8859_8:7:iso_8859-8:7: +@:LDP man-pages:3.34:2002/09/24:iso_8859_9:7:iso_8859-9:7: +○:LDP man-pages:3.34:2010/10/24:koi8-r:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: +×:LDP man-pages:3.34:2010/09/20:koi8-u:7::::: +@:LDP man-pages:3.34:1999/05/31:latin1:7:iso_8859-1:7: +@:LDP man-pages:3.34:2003/03/05:latin10:7:iso_8859-16:7: +@:LDP man-pages:3.34:2007/11/25:latin2:7:iso_8859-2:7: +※:LDP man-pages:3.34:2010/09/20:latin3:7:iso_8859-3:7: +※:LDP man-pages:3.34:2009/01/24:latin4:7:iso_8859-4:7: +@:LDP man-pages:3.34:2002/09/24:latin5:7:iso_8859-9:7: +※:LDP man-pages:3.34:2010/09/20:latin6:7:iso_8859-10:7: +※:LDP man-pages:3.34:2010/09/20:latin7:7:iso_8859-13:7: +※:LDP man-pages:3.34:2010/09/20:latin8:7:iso_8859-14:7: +@:LDP man-pages:3.34:1999/05/31:latin9:7:iso_8859-15:7: +×:LDP man-pages:3.34:2009/01/13:libc:7::::: +○:LDP man-pages:3.34:2008/12/05:locale:7:2006/02/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2004/09/15:mailaddr:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/05/30:man:7:2007/06/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/10/28:man-pages:7:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/08/11:math_error:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:1999/07/11:mdoc:7:2008/10/08::argrath@ub32.org:Kentaro Shirakata: +c:LDP man-pages:3.32=>3.34:1993/12/30:mdoc.samples:7:1999/01/21::man-jp@freebsd.org:FreeBSD jpman project:http://www.jp.freebsd.org/man-jp/ +○:LDP man-pages:3.34:2009/09/27:mq_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/01/14:netdevice:7:2009/03/05::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:2008/11/11:netlink:7:2006/07/12::ysato444@yahoo.co.jp:Yuichi SATO: +×:LDP man-pages:3.34:2008/08/15:numa:7::::: +☆:LDP man-pages:3.32=>3.34:2011/09/09:operator:7:2004/11/16::ysato444@yahoo.co.jp:Yuichi SATO: +○:LDP man-pages:3.34:2008/08/08:packet:7:2005/03/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.32=>3.34:2009/12/05:path_resolution:7:2007/06/13::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2005/12/08:pipe:7:2005/12/27::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2007/12/21:posixoptions:7:2005/01/14::ysato444@yahoo.co.jp:Yuichi SATO: +☆:LDP man-pages:3.31=>3.34:2010/11/14:pthreads:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2005/10/10:pty:7:2005/10/14::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/11/20:raw:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/01/12:regex:7:1998/07/08::nakano@apm.seikei.ac.jp:NAKANO Takeo: +×:LDP man-pages:3.34:2010/09/10:rtld-audit:7::::: +○:LDP man-pages:3.34:2008/08/08:rtnetlink:7:2001/03/11::argrath@ub32.org:Kentaro Shirakata: +☆:LDP man-pages:3.32=>3.34:2010/05/22:sem_overview:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/09/10:shm_overview:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2011/09/09:sigevent:7::::: +☆:LDP man-pages:3.31=>3.34:2011/09/18:signal:7:2008/08/19::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:3.24=>3.34:2010/06/13:socket:7:2007/01/05::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +☆:LDP man-pages:2.67=>3.34:2007/12/20:spufs:7:2007/10/23::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/06/01:standards:7:2006/08/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2000/11/16:suffixes:7:2001/04/24::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.34:2009/01/26:svipc:7:2006/07/16::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +×:LDP man-pages:3.34:2008/06/18:symlink:7::::: +☆:LDP man-pages:3.25=>3.34:2010/09/10:tcp:7:2009/03/09::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2006/12/28:termio:7:2007/05/04::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2010/02/25:time:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +※:LDP man-pages:3.34:2010/09/20:tis-620:7:iso_8859-11:7: +☆:LDP man-pages:3.24=>3.34:2010/06/13:udp:7:2009/01/15::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2008/12/03:udplite:7:2008/10/12::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2001/05/11:unicode:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.34:2001/12/22:units:7:2002/01/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +☆:LDP man-pages:3.25=>3.34:2011/09/15:unix:7:2008/08/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2000/03/14:uri:7:2008/07/22::argrath@ub32.org:Kentaro Shirakata: +@:LDP man-pages:3.34:2000/03/14:url:7:uri:7: +@:LDP man-pages:3.34:2000/03/14:urn:7:uri:7: +○:LDP man-pages:3.34:2001/05/11:utf-8:7:2001/07/14::ysato@h4.dion.ne.jp:Yuichi SATO: +@:LDP man-pages:3.34:2001/05/11:utf8:7:utf-8:7: +○:LDP man-pages:3.34:2008/08/08:x25:7:1999/12/06::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2007/10/23:intro:8:2008/02/10::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +@:LDP man-pages:3.34:2009/01/12:ld-linux:8:ld.so:8: +@:LDP man-pages:3.34:2009/01/12:ld-linux.so:8:ld.so:8: +○:LDP man-pages:3.34:2009/01/12:ld.so:8:2010/04/25::amotoki@dd.iij4u.or.jp:Akihiro MOTOKI: +○:LDP man-pages:3.34:2009/04/15:ldconfig:8:2002/08/20::ysato@h4.dion.ne.jp:Yuichi SATO:The ancestor is in ld.so. +○:LDP man-pages:3.34:2008/12/05:nscd:8:2009/03/14::argrath@ub32.org:Kentaro Shirakata: +○:LDP man-pages:3.34:1998/11/01:sync:8:2000/06/13::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: +○:LDP man-pages:3.34:2007/05/18:tzselect:8:2002/01/14::ysato@h4.dion.ne.jp:Yuichi SATO: +○:LDP man-pages:3.34:0000/00/00:zdump:8:1999/09/14::nakano@apm.seikei.ac.jp:NAKANO Takeo: +○:LDP man-pages:3.34:2010/02/25:zic:8:2001/04/04::sato@complex.eng.hokudai.ac.jp:Yuichi SATO: