man-pages/man2
Alejandro Colomar 8ccbd769d0 mmap2.2: Fix prototype parameter types
There are many slightly different prototypes for this syscall,
but none of them is like the documented one.
Of all the different prototypes,
let's document the asm-generic one.

This manual page was actually using a prototype similar to
mmap(2), but there's no glibc wrapper function called mmap2(2),
as the wrapper for this syscall is mmap(2).  Therefore, the
documented prototype should be the kernel one.

......

.../linux$ grep_syscall mmap2
arch/csky/kernel/syscall.c:17:
SYSCALL_DEFINE6(mmap2,
	unsigned long, addr,
	unsigned long, len,
	unsigned long, prot,
	unsigned long, flags,
	unsigned long, fd,
	off_t, offset)
arch/microblaze/kernel/sys_microblaze.c:46:
SYSCALL_DEFINE6(mmap2, unsigned long, addr, unsigned long, len,
		unsigned long, prot, unsigned long, flags, unsigned long, fd,
		unsigned long, pgoff)
arch/nds32/kernel/sys_nds32.c:12:
SYSCALL_DEFINE6(mmap2, unsigned long, addr, unsigned long, len,
	       unsigned long, prot, unsigned long, flags,
	       unsigned long, fd, unsigned long, pgoff)
arch/powerpc/kernel/syscalls.c:60:
SYSCALL_DEFINE6(mmap2, unsigned long, addr, size_t, len,
		unsigned long, prot, unsigned long, flags,
		unsigned long, fd, unsigned long, pgoff)
arch/riscv/kernel/sys_riscv.c:37:
SYSCALL_DEFINE6(mmap2, unsigned long, addr, unsigned long, len,
	unsigned long, prot, unsigned long, flags,
	unsigned long, fd, off_t, offset)
arch/s390/kernel/sys_s390.c:49:
SYSCALL_DEFINE1(mmap2, struct s390_mmap_arg_struct __user *, arg)
arch/sparc/kernel/sys_sparc_32.c:101:
SYSCALL_DEFINE6(mmap2, unsigned long, addr, unsigned long, len,
	unsigned long, prot, unsigned long, flags, unsigned long, fd,
	unsigned long, pgoff)
arch/ia64/include/asm/unistd.h:30:
asmlinkage unsigned long sys_mmap2(
				unsigned long addr, unsigned long len,
				int prot, int flags,
				int fd, long pgoff);
arch/ia64/kernel/sys_ia64.c:139:
asmlinkage unsigned long
sys_mmap2 (unsigned long addr, unsigned long len, int prot, int flags, int fd, long pgoff)
arch/m68k/kernel/sys_m68k.c:40:
asmlinkage long sys_mmap2(unsigned long addr, unsigned long len,
	unsigned long prot, unsigned long flags,
	unsigned long fd, unsigned long pgoff)
arch/parisc/kernel/sys_parisc.c:275:
asmlinkage unsigned long sys_mmap2(unsigned long addr, unsigned long len,
	unsigned long prot, unsigned long flags, unsigned long fd,
	unsigned long pgoff)
arch/powerpc/include/asm/syscalls.h:15:
asmlinkage long sys_mmap2(unsigned long addr, size_t len,
		unsigned long prot, unsigned long flags,
		unsigned long fd, unsigned long pgoff);
arch/sh/include/asm/syscalls.h:8:
asmlinkage long sys_mmap2(unsigned long addr, unsigned long len,
			  unsigned long prot, unsigned long flags,
			  unsigned long fd, unsigned long pgoff);
arch/sh/kernel/sys_sh.c:41:
asmlinkage long sys_mmap2(unsigned long addr, unsigned long len,
	unsigned long prot, unsigned long flags,
	unsigned long fd, unsigned long pgoff)
arch/sparc/kernel/systbls.h:23:
asmlinkage long sys_mmap2(unsigned long addr, unsigned long len,
			  unsigned long prot, unsigned long flags,
			  unsigned long fd, unsigned long pgoff);
include/asm-generic/syscalls.h:14:
asmlinkage long sys_mmap2(unsigned long addr, unsigned long len,
			unsigned long prot, unsigned long flags,
			unsigned long fd, unsigned long pgoff);
.../linux$

function grep_syscall()
{
	if ! [ -v 1 ]; then
		>&2 echo "Usage: ${FUNCNAME[0]} <syscall>";
		return ${EX_USAGE};
	fi

	find * -type f \
	|grep '\.c$' \
	|sort -V \
	|xargs pcregrep -Mn "(?s)^\w*SYSCALL_DEFINE.\(${1},.*?\)" \
	|sed -E 's/^[^:]+:[0-9]+:/&\n/';

	find * -type f \
	|grep '\.[ch]$' \
	|sort -V \
	|xargs pcregrep -Mn "(?s)^asmlinkage\s+[\w\s]+\**sys_${1}\s*\(.*?\)" \
	|sed -E 's/^[^:]+:[0-9]+:/&\n/';
}

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
2021-02-09 19:39:47 +01:00
..
_Exit.2
__clone2.2
_exit.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
_llseek.2
_newselect.2
_syscall.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
_sysctl.2
accept.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:51 +01:00
accept4.2
access.2 access.2: wfix 2021-01-28 14:10:10 +01:00
acct.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
add_key.2 Various pages: use "\-" to generate real minus in circumstances where appropriate 2021-01-21 10:53:59 +01:00
adjtimex.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
afs_syscall.2
alarm.2 alarm.2: ffix 2017-08-15 08:56:39 +02:00
alloc_hugepages.2 alloc_hugepages.2: CONFORMING TO: reword to reflect that these system calls are long gone 2021-01-09 20:52:49 +01:00
arch_prctl.2 Various pages: Normalize NOTES about nonexistent glibc wrappers 2020-12-30 16:56:38 +01:00
arm_fadvise.2
arm_fadvise64_64.2
arm_sync_file_range.2
bdflush.2 bdflush.2, capget.2, get_mempolicy.2, ipc.2, lookup_dcookie.2, mbind.2, migrate_pages.2: Add notes about missing glibc wrappers 2021-02-06 21:45:41 +01:00
bind.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
bpf.2 Various pages: use "\-" to generate real minus in circumstances where appropriate 2021-01-21 10:53:59 +01:00
break.2
brk.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
cacheflush.2 Various pages: use "\-" to generate real minus in circumstances where appropriate 2021-01-21 10:53:59 +01:00
capget.2 bdflush.2, capget.2, get_mempolicy.2, ipc.2, lookup_dcookie.2, mbind.2, migrate_pages.2: Add notes about missing glibc wrappers 2021-02-06 21:45:41 +01:00
capset.2
chdir.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
chmod.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
chown.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
chown32.2
chroot.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
clock_adjtime.2 clock_adjtime.2: New link to adjtimex(2) 2020-04-20 13:00:23 +02:00
clock_getres.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:51 +01:00
clock_gettime.2
clock_nanosleep.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
clock_settime.2
clone.2 clone.2: tfix 2021-01-19 08:54:41 +01:00
clone2.2
clone3.2 clone3.2: New link to clone(2) 2019-10-25 16:32:33 +02:00
close.2 close.2, getpriority.2, ioctl_userfaultfd.2, expm1.3, lio_listio.3, rcmd.3, lirc.4, mount_namespaces.7: tfix: Fix punctuation 2021-01-08 09:55:25 +01:00
connect.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
copy_file_range.2 copy_file_range.2: Document glibc wrapper instead of kernel syscall 2020-12-31 15:01:18 +01:00
creat.2
create_module.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
delete_module.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
dup.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
dup2.2
dup3.2
epoll_create.2 epoll_create.2: CONFORMING TO: mention also that epoll_create1() is Linux-specific 2021-01-09 20:49:43 +01:00
epoll_create1.2
epoll_ctl.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
epoll_pwait.2
epoll_wait.2 epoll_wait.2: srcfix: glibc doesn't provide epoll_pwait2() yet 2021-02-06 21:34:45 +01:00
eventfd.2 Various pages: Improve formatting in ATTRIBUTES 2021-01-06 13:46:39 +01:00
eventfd2.2
execve.2 Various pages: use real minus signs in pathnames 2021-01-21 10:29:14 +01:00
execveat.2 execveat.2: srcfix: add a link to glibc bug requesting wrapper 2021-02-09 19:35:53 +01:00
exit.2
exit_group.2 _exit.2, bpf.2, cacheflush.2, capget.2, chdir.2, chmod.2, chroot.2, clock_getres.2, clock_nanosleep.2, close.2, connect.2, create_module.2, dup.2, epoll_create.2, epoll_ctl.2, epoll_wait.2, eventfd.2, execve.2, execveat.2, exit_group.2, fanotify_mark.2, flock.2, fork.2, fsync.2, futex.2, futimesat.2, get_kernel_syms.2, get_mempolicy.2, get_robust_list.2, getcpu.2, getdomainname.2, getgid.2, getgroups.2, gethostname.2, getitimer.2, getpagesize.2, getpeername.2, getpid.2, getpriority.2, getrandom.2, getresuid.2, getrlimit.2, getrusage.2, getsid.2, getsockname.2, getsockopt.2, gettid.2, gettimeofday.2, getuid.2, getunwind.2, getxattr.2, idle.2, inotify_add_watch.2, inotify_init.2, inotify_rm_watch.2, ioctl.2, ioctl_fat.2, ioctl_ficlonerange.2, ioctl_fideduperange.2, ioctl_getfsmap.2, ioctl_tty.2, ioperm.2, iopl.2, keyctl.2, kill.2, link.2, listen.2, listxattr.2, llseek.2, lseek.2, madvise.2, mbind.2, membarrier.2, memfd_create.2, migrate_pages.2, mincore.2, mkdir.2, mknod.2, mlock.2, mmap.2, mmap2.2, modify_ldt.2, mount.2, move_pages.2, mprotect.2, mq_getsetattr.2, mremap.2, msgop.2, msync.2, nanosleep.2, nfsservctl.2, nice.2, pause.2, pciconfig_read.2, perf_event_open.2, perfmonctl.2, personality.2, pkey_alloc.2, poll.2, posix_fadvise.2, prctl.2, pread.2, process_vm_readv.2, ptrace.2, query_module.2, read.2, readahead.2, readdir.2, readv.2, reboot.2, recv.2, remap_file_pages.2, removexattr.2, rename.2, request_key.2, rmdir.2, rt_sigqueueinfo.2, sched_get_priority_max.2, sched_rr_get_interval.2, sched_setaffinity.2, sched_setparam.2, sched_setscheduler.2, sched_yield.2, select.2, select_tut.2, semctl.2, semget.2, semop.2, send.2, sendfile.2, set_mempolicy.2, set_tid_address.2, seteuid.2, setfsgid.2, setfsuid.2, setgid.2, setns.2, setpgid.2, setresuid.2, setreuid.2, setsid.2, setuid.2, setup.2, setxattr.2, sgetmask.2, shmctl.2, shmget.2, shutdown.2, sigaction.2, sigaltstack.2, sigpending.2, sigprocmask.2, sigsuspend.2, sigwaitinfo.2, socket.2, socketcall.2, socketpair.2, stat.2, statfs.2, stime.2, swapon.2, symlink.2, sync.2, sysctl.2, sysinfo.2, syslog.2, time.2, timer_create.2, timer_delete.2, timer_getoverrun.2, timer_settime.2, timerfd_create.2, times.2, tkill.2, truncate.2, umask.2, umount.2, uname.2, unlink.2, unshare.2, uselib.2, userfaultfd.2, ustat.2, utime.2, utimensat.2, vfork.2, vhangup.2, vm86.2, wait.2, wait4.2, write.2, CPU_SET.3, INFINITY.3, __ppc_get_timebase.3, __ppc_set_ppr_med.3, __ppc_yield.3, __setfpucw.3, a64l.3, abort.3, abs.3, acos.3, acosh.3, addseverity.3, adjtime.3, aio_cancel.3, aio_error.3, aio_fsync.3, aio_init.3, aio_read.3, aio_return.3, aio_suspend.3, aio_write.3, alloca.3, argz_add.3, asin.3, asinh.3, asprintf.3, assert.3, assert_perror.3, atan.3, atan2.3, atanh.3, atexit.3, atof.3, atoi.3, basename.3, bcmp.3, bcopy.3, bsd_signal.3, bsearch.3, bstring.3, btowc.3, byteorder.3, cabs.3, cacos.3, cacosh.3, canonicalize_file_name.3, carg.3, casin.3, casinh.3, catan.3, catanh.3, catopen.3, cbrt.3, ccos.3, ccosh.3, ceil.3, cexp.3, cexp2.3, cfree.3, cimag.3, clearenv.3, clock.3, clock_getcpuclockid.3, clog.3, clog10.3, clog2.3, closedir.3, cmsg.3, confstr.3, conj.3, copysign.3, cos.3, cosh.3, cpow.3, cproj.3, creal.3, crypt.3, csin.3, csinh.3, csqrt.3, ctan.3, ctanh.3, ctermid.3, ctime.3, daemon.3, difftime.3, dirfd.3, div.3, dlerror.3, dlopen.3, dlsym.3, drand48.3, drand48_r.3, duplocale.3, dysize.3, ecvt.3, ecvt_r.3, encrypt.3, endian.3, erf.3, erfc.3, err.3, errno.3, ether_aton.3, euidaccess.3, exec.3, exit.3, exp.3, exp10.3, exp2.3, expm1.3, fabs.3, fclose.3, fcloseall.3, fdim.3, fenv.3, ferror.3, fexecve.3, fflush.3, ffs.3, fgetc.3, fgetgrent.3, fgetpwent.3, fgetwc.3, fgetws.3, finite.3, flockfile.3, floor.3, fma.3, fmax.3, fmemopen.3, fmin.3, fmod.3, fmtmsg.3, fnmatch.3, fopen.3, fpathconf.3, fpclassify.3, fpurge.3, fputwc.3, fputws.3, fread.3, frexp.3, fseek.3, fseeko.3, ftime.3, ftok.3, fts.3, ftw.3, futimes.3, fwide.3, gamma.3, gcvt.3, get_nprocs_conf.3, get_phys_pages.3, getaddrinfo.3, getaddrinfo_a.3, getauxval.3, getcontext.3, getcwd.3, getdate.3, getdirentries.3, getdtablesize.3, getentropy.3, getenv.3, getfsent.3, getgrent.3, getgrent_r.3, getgrnam.3, getgrouplist.3, gethostbyname.3, gethostid.3, getifaddrs.3, getipnodebyname.3, getline.3, getloadavg.3, getlogin.3, getmntent.3, getnameinfo.3, getnetent.3, getnetent_r.3, getopt.3, getpass.3, getprotoent.3, getprotoent_r.3, getpt.3, getpw.3, getpwent.3, getpwent_r.3, getpwnam.3, getrpcent_r.3, getrpcport.3, gets.3, getservent.3, getservent_r.3, getspnam.3, getsubopt.3, getttyent.3, getumask.3, getusershell.3, getutent.3, getw.3, getwchar.3, glob.3, grantpt.3, group_member.3, gsignal.3, hsearch.3, hypot.3, iconv.3, iconv_close.3, iconv_open.3, if_nameindex.3, if_nametoindex.3, ilogb.3, index.3, inet.3, inet_net_pton.3, inet_ntop.3, infnan.3, initgroups.3, insque.3, isalpha.3, isatty.3, isfdtype.3, isgreater.3, iswalnum.3, iswalpha.3, iswblank.3, iswcntrl.3, iswctype.3, iswdigit.3, iswgraph.3, iswlower.3, iswprint.3, iswpunct.3, iswspace.3, iswupper.3, iswxdigit.3, j0.3, key_setsecret.3, killpg.3, ldexp.3, lgamma.3, localeconv.3, lockf.3, log.3, log10.3, log1p.3, log2.3, logb.3, login.3, lrint.3, lround.3, lsearch.3, lseek64.3, makecontext.3, malloc.3, malloc_get_state.3, malloc_hook.3, malloc_info.3, matherr.3, mblen.3, mbrlen.3, mbrtowc.3, mbsinit.3, mbsnrtowcs.3, mbsrtowcs.3, mbstowcs.3, mbtowc.3, mcheck.3, memccpy.3, memchr.3, memcmp.3, memcpy.3, memfrob.3, memmem.3, memmove.3, mempcpy.3, memset.3, mkdtemp.3, mkfifo.3, mkstemp.3, mktemp.3, modf.3, mpool.3, mq_close.3, mq_getattr.3, mq_notify.3, mq_open.3, mq_receive.3, mq_send.3, mq_unlink.3, mtrace.3, nan.3, netlink.3, newlocale.3, nextafter.3, nl_langinfo.3, offsetof.3, on_exit.3, open_memstream.3, opendir.3, openpty.3, perror.3, popen.3, posix_fallocate.3, posix_madvise.3, posix_memalign.3, posix_openpt.3, pow.3, pow10.3, printf.3, profil.3, psignal.3, pthread_atfork.3, pthread_attr_init.3, pthread_attr_setaffinity_np.3, pthread_attr_setdetachstate.3, pthread_attr_setguardsize.3, pthread_attr_setinheritsched.3, pthread_attr_setschedparam.3, pthread_attr_setschedpolicy.3, pthread_attr_setscope.3, pthread_attr_setstack.3, pthread_attr_setstackaddr.3, pthread_attr_setstacksize.3, pthread_cancel.3, pthread_cleanup_push.3, pthread_cleanup_push_defer_np.3, pthread_create.3, pthread_detach.3, pthread_equal.3, pthread_exit.3, pthread_getattr_default_np.3, pthread_getattr_np.3, pthread_getcpuclockid.3, pthread_join.3, pthread_kill.3, pthread_rwlockattr_setkind_np.3, pthread_self.3, pthread_setaffinity_np.3, pthread_setcancelstate.3, pthread_setconcurrency.3, pthread_setname_np.3, pthread_setschedparam.3, pthread_setschedprio.3, pthread_sigmask.3, pthread_sigqueue.3, pthread_testcancel.3, pthread_tryjoin_np.3, pthread_yield.3, ptsname.3, putenv.3, putgrent.3, putpwent.3, puts.3, putwchar.3, qecvt.3, qsort.3, raise.3, rand.3, random.3, random_r.3, rcmd.3, re_comp.3, readdir.3, realpath.3, remainder.3, remove.3, remquo.3, resolver.3, rewinddir.3, rexec.3, rint.3, round.3, rpmatch.3, rtime.3, rtnetlink.3, scalb.3, scalbln.3, scandir.3, scanf.3, sched_getcpu.3, seekdir.3, sem_close.3, sem_destroy.3, sem_getvalue.3, sem_init.3, sem_open.3, sem_post.3, sem_unlink.3, sem_wait.3, setaliasent.3, setbuf.3, setenv.3, setlocale.3, setlogmask.3, setnetgrent.3, shm_open.3, siginterrupt.3, signbit.3, significand.3, sigpause.3, sigqueue.3, sigset.3, sigvec.3, sigwait.3, sin.3, sincos.3, sinh.3, sleep.3, sockatmark.3, sqrt.3, statvfs.3, stdarg.3, stdio.3, stdio_ext.3, stpcpy.3, stpncpy.3, strcasecmp.3, strcat.3, strchr.3, strcmp.3, strcoll.3, strcpy.3, strdup.3, strerror.3, strfmon.3, strfromd.3, strfry.3, strftime.3, strlen.3, strnlen.3, strpbrk.3, strptime.3, strsep.3, strsignal.3, strspn.3, strstr.3, strtod.3, strtoimax.3, strtok.3, strtol.3, strtoul.3, strverscmp.3, strxfrm.3, swab.3, sysconf.3, syslog.3, system.3, sysv_signal.3, tan.3, tanh.3, tcgetpgrp.3, tcgetsid.3, telldir.3, tempnam.3, termios.3, tgamma.3, timegm.3, timeradd.3, tmpfile.3, tmpnam.3, toascii.3, toupper.3, towctrans.3, towlower.3, towupper.3, trunc.3, tsearch.3, ttyname.3, ttyslot.3, tzset.3, ualarm.3, ulimit.3, ungetwc.3, unlocked_stdio.3, unlockpt.3, updwtmp.3, uselocale.3, usleep.3, wcpcpy.3, wcpncpy.3, wcrtomb.3, wcscasecmp.3, wcscat.3, wcschr.3, wcscmp.3, wcscpy.3, wcscspn.3, wcsdup.3, wcslen.3, wcsncasecmp.3, wcsncat.3, wcsncmp.3, wcsncpy.3, wcsnlen.3, wcsnrtombs.3, wcspbrk.3, wcsrchr.3, wcsrtombs.3, wcsspn.3, wcsstr.3, wcstoimax.3, wcstok.3, wcstombs.3, wcswidth.3, wctob.3, wctomb.3, wctrans.3, wctype.3, wcwidth.3, wmemchr.3, wmemcmp.3, wmemcpy.3, wmemmove.3, wmemset.3, wordexp.3, wprintf.3, xcrypt.3, y0.3, dsp56k.4, random.4, rtc.4, st.4, ddp.7, ip.7, ipv6.7, packet.7, rtnetlink.7, socket.7, tcp.7, udp.7, udplite.7, x25.7: ffix 2017-08-15 17:16:29 +02:00
faccessat.2
faccessat2.2 faccessat2.2: New link to access.2 2020-11-15 12:46:29 +01:00
fadvise64.2
fadvise64_64.2
fallocate.2 dup.2, fallocate.2, futex.2, ioctl_fat.2, ioctl_ficlonerange.2, ioctl_fideduperange.2, madvise.2, membarrier.2, mprotect.2, open.2, openat2.2, perf_event_open.2, perfmonctl.2, pipe.2, process_vm_readv.2, s390_pci_mmio_write.2, s390_runtime_instr.2, s390_sthyi.2, set_thread_area.2, sigprocmask.2, subpage_prot.2, unshare.2, cmsg.3, newlocale.3, pthread_setname_np.3, strfmon.3, strfromd.3, tsearch.3, tcp.7, ld.so.8: ffix 2020-06-11 07:45:09 +02:00
fanotify_init.2 Various pages: tfix (Oxford comma) 2021-01-09 11:15:26 +01:00
fanotify_mark.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
fattach.2
fchdir.2
fchmod.2
fchmodat.2
fchown.2
fchown32.2
fchownat.2
fcntl.2 Various pages: use "\-" to generate real minus in circumstances where appropriate 2021-01-21 10:53:59 +01:00
fcntl64.2
fdatasync.2
fdetach.2
fgetxattr.2
finit_module.2
flistxattr.2
flock.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
fork.2 Various pages: use real minus signs in pathnames 2021-01-21 10:29:14 +01:00
free_hugepages.2
fremovexattr.2
fsetxattr.2
fstat.2
fstat64.2
fstatat.2
fstatat64.2
fstatfs.2
fstatfs64.2
fsync.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
ftruncate.2
ftruncate64.2
futex.2 Various pages: use real minus signs in pathnames 2021-01-21 10:29:14 +01:00
futimesat.2 Various pages: ffix: More layout consistency fixes for FTMs 2021-01-05 13:22:01 +01:00
get_kernel_syms.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
get_mempolicy.2 bdflush.2, capget.2, get_mempolicy.2, ipc.2, lookup_dcookie.2, mbind.2, migrate_pages.2: Add notes about missing glibc wrappers 2021-02-06 21:45:41 +01:00
get_robust_list.2 Various pages: use real minus signs in pathnames 2021-01-21 10:29:14 +01:00
get_thread_area.2
getcpu.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
getcwd.2 getcwd.2, mq_notify.2, mq_open.2, mq_timedreceive.2, mq_timedsend.2, mq_unlink.2: Reinstate links to section 3 pages that document system calls 2020-09-20 13:41:38 +02:00
getdents.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
getdents64.2
getdomainname.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
getegid.2
getegid32.2
geteuid.2
geteuid32.2
getgid.2 getgid.2, getuid.2: Note that these interfaces never modify 'errno' 2021-02-06 10:38:57 +01:00
getgid32.2
getgroups.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
getgroups32.2
gethostname.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
getitimer.2 getitimer.2: Use restrict in prototypes 2021-02-06 21:37:34 +01:00
getmsg.2
getpagesize.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
getpeername.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
getpgid.2
getpgrp.2
getpid.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
getpmsg.2
getppid.2
getpriority.2 getpriority.2, recv.2, fts.3: wfix 2021-02-07 12:01:36 +01:00
getrandom.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
getresgid.2
getresgid32.2
getresuid.2 Various pages: tfix (Oxford comma) 2021-01-09 11:02:33 +01:00
getresuid32.2
getrlimit.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
getrusage.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
getsid.2 getsid.2: wfix 2021-01-09 09:57:41 +01:00
getsockname.2 getsockname.2: Use restrict in prototypes 2021-02-06 21:39:59 +01:00
getsockopt.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
gettid.2 gettid.2: Document header file and feature test macro requirements for gettid() 2020-05-25 15:46:44 +02:00
gettimeofday.2 gettimeofday.2: Use restrict in prototypes 2021-02-06 21:38:53 +01:00
getuid.2 getgid.2, getuid.2: Note that these interfaces never modify 'errno' 2021-02-06 10:38:57 +01:00
getuid32.2
getunwind.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
getxattr.2 Various pages: Remove redundant "\\ " to escape spaces 2021-01-08 13:42:27 +01:00
gtty.2
idle.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
inb.2
inb_p.2
init_module.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
inl.2
inl_p.2
inotify_add_watch.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
inotify_init.2 getent.1, localedef.1, accept.2, arch_prctl.2, clock_getres.2, clock_nanosleep.2, connect.2, dup.2, epoll_create.2, epoll_ctl.2, epoll_wait.2, execve.2, getitimer.2, getsockopt.2, gettid.2, inotify_add_watch.2, inotify_init.2, io_submit.2, ioctl.2, lseek.2, madvise.2, mlock.2, mmap.2, mprotect.2, msgctl.2, msgop.2, open_by_handle_at.2, openat2.2, pidfd_open.2, poll.2, prctl.2, quotactl.2, s390_sthyi.2, select.2, select_tut.2, semctl.2, semget.2, semop.2, setns.2, shmctl.2, shmget.2, shmop.2, sigaction.2, stat.2, statx.2, syscalls.2, timer_create.2, timerfd_create.2, unshare.2, wait.2, CPU_SET.3, aio_init.3, atoi.3, des_crypt.3, dirfd.3, fmemopen.3, fopencookie.3, ftok.3, fts.3, getaddrinfo.3, getifaddrs.3, getrpcent.3, gsignal.3, lio_listio.3, nl_langinfo.3, posix_memalign.3, posix_openpt.3, posix_spawn.3, scanf.3, sem_init.3, sem_post.3, shm_open.3, strcmp.3, strftime.3, st.4, elf.5, group.5, proc.5, services.5, aio.7, cgroups.7, feature_test_macros.7, keyrings.7, man-pages.7, namespaces.7, path_resolution.7, sigevent.7, signal.7, socket.7, sysvipc.7, time.7, udp.7: tstamp 2020-04-11 22:07:24 +02:00
inotify_init1.2
inotify_rm_watch.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:27 +01:00
insb.2
insl.2
insw.2
intro.2 memusage.1, pldd.1, sprof.1, add_key.2, bind.2, bpf.2, clone.2, dup.2, epoll_ctl.2, eventfd.2, fanotify_init.2, fanotify_mark.2, futex.2, getdents.2, getpid.2, getrlimit.2, intro.2, ioctl_fat.2, ioctl_ns.2, kcmp.2, keyctl.2, membarrier.2, memfd_create.2, mprotect.2, msgctl.2, msgop.2, nfsservctl.2, open.2, open_by_handle_at.2, openat2.2, outb.2, perf_event_open.2, pivot_root.2, recv.2, recvmmsg.2, request_key.2, sched_setaffinity.2, sched_setattr.2, seccomp.2, select.2, send.2, signalfd.2, spu_run.2, sysctl.2, timer_create.2, userfaultfd.2, wait.2, CPU_SET.3, abs.3, argz_add.3, backtrace.3, bsearch.3, bswap.3, clock_getcpuclockid.3, cmsg.3, dl_iterate_phdr.3, dlinfo.3, dlopen.3, drand48.3, drand48_r.3, duplocale.3, encrypt.3, endian.3, envz_add.3, errno.3, ffs.3, fopencookie.3, get_phys_pages.3, getaddrinfo.3, getaddrinfo_a.3, getdate.3, getgrent_r.3, getgrouplist.3, getifaddrs.3, getline.3, getprotoent_r.3, getpwent_r.3, getpwnam.3, getservent_r.3, hsearch.3, insque.3, intro.3, lrint.3, lround.3, lseek64.3, mallinfo.3, malloc_hook.3, malloc_info.3, mbsinit.3, mbstowcs.3, mtrace.3, newlocale.3, ntp_gettime.3, offsetof.3, perror.3, posix_fallocate.3, posix_spawn.3, printf.3, psignal.3, pthread_attr_init.3, pthread_create.3, pthread_getattr_np.3, pthread_getcpuclockid.3, pthread_setaffinity_np.3, pthread_setname_np.3, pthread_sigmask.3, qsort.3, rand.3, random.3, rpc.3, rtnetlink.3, scalbln.3, shm_open.3, stdarg.3, strcat.3, strerror.3, strfmon.3, strptime.3, strsignal.3, strtod.3, strtok.3, strtol.3, strtoul.3, tsearch.3, wordexp.3, loop.4, vcs.4, veth.4, core.5, locale.5, slabinfo.5, cgroup_namespaces.7, cpuset.7, credentials.7, fanotify.7, feature_test_macros.7, inotify.7, ip.7, kernel_lockdown.7, man.7, mount_namespaces.7, namespaces.7, pid_namespaces.7, rtld-audit.7, sigevent.7, sock_diag.7, standards.7, unix.7, user_namespaces.7: tstamp 2020-11-01 21:56:08 +01:00
inw.2
inw_p.2
io_cancel.2 Various pages: Normalize NOTES about nonexistent glibc wrappers 2020-12-30 16:56:38 +01:00
io_destroy.2 Various pages: Normalize NOTES about nonexistent glibc wrappers 2020-12-30 16:56:38 +01:00
io_getevents.2 Various pages: Normalize NOTES about nonexistent glibc wrappers 2020-12-30 16:56:38 +01:00
io_setup.2 Various pages: use real minus signs in pathnames 2021-01-21 10:29:14 +01:00
io_submit.2 Various pages: Normalize NOTES about nonexistent glibc wrappers 2020-12-30 16:56:38 +01:00
ioctl.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
ioctl_console.2 time.1, ioctl_console.2, daemon.3, updwtmp.3, mouse.4, smartpqi.4: tfix (Oxford comma) 2021-01-09 12:53:15 +01:00
ioctl_fat.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
ioctl_ficlone.2 man2: New page documenting FICLONE and FICLONERANGE ioctls 2016-06-08 12:34:45 +02:00
ioctl_ficlonerange.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
ioctl_fideduperange.2 ioctl_fslabel.2, ioctl_fideduperange.2: wfix 2021-01-09 10:34:46 +01:00
ioctl_fslabel.2 ioctl_fslabel.2, ioctl_fideduperange.2: wfix 2021-01-09 10:34:46 +01:00
ioctl_getfsmap.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
ioctl_iflags.2 Various pages: tfix (Oxford comma) 2021-01-09 11:15:26 +01:00
ioctl_ns.2 ioctl_ns.2, keyctl.2, memfd_create.2, pidfd_send_signal.2, poll.2, seccomp.2, signalfd.2, timerfd_create.2, unshare.2, dlinfo.3, duplocale.3, fopencookie.3, getgrouplist.3, getifaddrs.3, getprotoent_r.3, getservent_r.3, insque.3, printf.3, pthread_attr_init.3, pthread_cancel.3, pthread_create.3, pthread_mutexattr_setrobust.3, pthread_setaffinity_np.3, qsort.3, sem_wait.3, core.5, elf.5, aio.7, epoll.7, pkeys.7, system_data_types.7, unix.7: Use periods more consistently inside code comments 2020-12-27 12:32:44 +01:00
ioctl_tty.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:51 +01:00
ioctl_userfaultfd.2 Various pages: use real minus signs in pathnames 2021-01-21 10:29:14 +01:00
ioperm.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
iopl.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
ioprio_get.2
ioprio_set.2 getent.1, iconv.1, ldd.1, locale.1, localedef.1, memusage.1, memusagestat.1, pldd.1, sprof.1, time.1, _syscall.2, accept.2, add_key.2, adjtimex.2, bind.2, bpf.2, capget.2, chown.2, chroot.2, clock_getres.2, clone.2, connect.2, copy_file_range.2, epoll_ctl.2, epoll_wait.2, eventfd.2, fanotify_init.2, fanotify_mark.2, fcntl.2, fsync.2, futex.2, getcpu.2, getdents.2, getgid.2, getgroups.2, getpid.2, gettid.2, gettimeofday.2, getuid.2, getxattr.2, inotify_add_watch.2, inotify_init.2, ioctl_fat.2, ioctl_ns.2, ioctl_userfaultfd.2, ioprio_set.2, kcmp.2, kexec_load.2, keyctl.2, listxattr.2, lseek.2, madvise.2, memfd_create.2, migrate_pages.2, mount.2, mprotect.2, mremap.2, msgctl.2, msgop.2, nfsservctl.2, open_by_handle_at.2, perf_event_open.2, pipe.2, pivot_root.2, pkey_alloc.2, poll.2, posix_fadvise.2, prctl.2, readahead.2, readdir.2, readlink.2, reboot.2, recvmmsg.2, removexattr.2, rename.2, request_key.2, s390_guarded_storage.2, s390_runtime_instr.2, s390_sthyi.2, sched_setaffinity.2, sched_setattr.2, sched_setparam.2, seccomp.2, select.2, select_tut.2, semctl.2, sendmmsg.2, set_thread_area.2, setgid.2, setns.2, setuid.2, setxattr.2, shmctl.2, sigaction.2, signalfd.2, sigsuspend.2, socket.2, socketpair.2, spu_run.2, stat.2, statx.2, subpage_prot.2, syscalls.2, sysctl.2, tee.2, timer_create.2, timerfd_create.2, truncate.2, uname.2, unshare.2, userfaultfd.2, ustat.2, vmsplice.2, write.2, CPU_SET.3, __ppc_get_timebase.3, alloca.3, argz_add.3, asprintf.3, backtrace.3, basename.3, bsd_signal.3, bstring.3, bswap.3, bzero.3, cacos.3, cacosh.3, catan.3, catanh.3, catgets.3, clock_getcpuclockid.3, cmsg.3, confstr.3, ctermid.3, ctime.3, des_crypt.3, dl_iterate_phdr.3, dlinfo.3, dlsym.3, duplocale.3, end.3, endian.3, errno.3, exec.3, exit.3, ferror.3, fgetws.3, fmemopen.3, fnmatch.3, fopencookie.3, fputws.3, frexp.3, ftw.3, get_nprocs_conf.3, get_phys_pages.3, getaddrinfo.3, getaddrinfo_a.3, getdate.3, getgrouplist.3, getifaddrs.3, getline.3, getlogin.3, getmntent.3, getnameinfo.3, getopt.3, getpass.3, getprotoent_r.3, getpwnam.3, getservent_r.3, getsubopt.3, glob.3, gnu_get_libc_version.3, hsearch.3, if_nameindex.3, index.3, inet.3, inet_net_pton.3, inet_pton.3, insque.3, isatty.3, iswblank.3, iswspace.3, lockf.3, makecontext.3, mallinfo.3, malloc.3, malloc_hook.3, malloc_info.3, mallopt.3, matherr.3, mbrtowc.3, mbsnrtowcs.3, mbsrtowcs.3, mbstowcs.3, mbtowc.3, mcheck.3, memchr.3, mq_getattr.3, mq_notify.3, newlocale.3, nl_langinfo.3, offsetof.3, perror.3, posix_spawn.3, printf.3, pthread_attr_init.3, pthread_cancel.3, pthread_cleanup_push.3, pthread_getattr_default_np.3, pthread_getattr_np.3, pthread_getcpuclockid.3, pthread_mutexattr_setrobust.3, pthread_rwlockattr_setkind_np.3, pthread_setaffinity_np.3, pthread_setname_np.3, pthread_setschedparam.3, pthread_sigmask.3, putenv.3, qsort.3, rand.3, random.3, readdir.3, regex.3, resolver.3, rpmatch.3, rtime.3, scanf.3, sem_wait.3, setaliasent.3, setbuf.3, stpcpy.3, stpncpy.3, strcat.3, strchr.3, strcmp.3, strcpy.3, strdup.3, strerror.3, strfromd.3, strfry.3, strftime.3, string.3, strlen.3, strnlen.3, strsep.3, strstr.3, strtok.3, strtol.3, strtoul.3, strverscmp.3, strxfrm.3, system.3, termios.3, trunc.3, wcpcpy.3, wcpncpy.3, wcrtomb.3, wcscat.3, wcscpy.3, wcslen.3, wcsncat.3, wcsncmp.3, wcsncpy.3, wcsnlen.3, wcsnrtombs.3, wcsrtombs.3, wcsstr.3, wcstok.3, wcstombs.3, wcwidth.3, wprintf.3, xcrypt.3, console_codes.4, dsp56k.4, full.4, initrd.4, lirc.4, loop.4, st.4, tty.4, vcs.4, charmap.5, core.5, host.conf.5, locale.5, proc.5, repertoiremap.5, resolv.conf.5, termcap.5, tmpfs.5, tzfile.5, aio.7, capabilities.7, cgroup_namespaces.7, cgroups.7, charsets.7, complex.7, epoll.7, fanotify.7, feature_test_macros.7, inotify.7, ip.7, locale.7, man-pages.7, man.7, namespaces.7, pid_namespaces.7, pkeys.7, pthreads.7, rtld-audit.7, sched.7, signal.7, sock_diag.7, socket.7, tcp.7, udp.7, unicode.7, user_namespaces.7, utf-8.7, zdump.8, zic.8: tstamp 2019-03-06 15:12:10 +01:00
ipc.2 ipc.2: Fix prototype parameter types 2021-02-09 19:26:49 +01:00
isastream.2
kcmp.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
kexec_file_load.2
kexec_load.2 kexec_load.2: srcfix: Don't break a line that doesn't get past the right margin 2021-01-24 23:31:41 +01:00
keyctl.2 Various pages: use "\-" to generate real minus in circumstances where appropriate 2021-01-21 10:53:59 +01:00
kill.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
lchown.2
lchown32.2
lgetxattr.2
link.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
linkat.2
listen.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
listxattr.2 Various pages: Remove redundant "\\ " to escape spaces 2021-01-08 13:42:27 +01:00
llistxattr.2
llseek.2 getent.1, access.2, cacheflush.2, chroot.2, clock_getres.2, fcntl.2, getrusage.2, io_cancel.2, io_destroy.2, io_getevents.2, io_setup.2, io_submit.2, link.2, llseek.2, mmap.2, mount.2, readv.2, restart_syscall.2, semctl.2, set_mempolicy.2, set_tid_address.2, shmctl.2, sigaction.2, sigaltstack.2, spu_create.2, statfs.2, subpage_prot.2, syscalls.2, timer_getoverrun.2, uselib.2, INFINITY.3, __ppc_set_ppr_med.3, bstring.3, btree.3, ctime.3, fgetc.3, fopen.3, getcontext.3, gethostbyname.3, getnetent.3, getprotoent.3, getservent.3, inet.3, j0.3, list.3, makecontext.3, nextafter.3, posix_memalign.3, profil.3, pthread_tryjoin_np.3, puts.3, rcmd.3, resolver.3, rtime.3, sigsetops.3, strnlen.3, tailq.3, elf.5, filesystems.5, nscd.conf.5, proc.5, utmp.5, attributes.7, ipv6.7, packet.7, pthreads.7, signal-safety.7, signal.7, spufs.7, system_data_types.7, tcp.7: tstamp 2020-12-21 16:19:35 +01:00
lock.2
lookup_dcookie.2 bdflush.2, capget.2, get_mempolicy.2, ipc.2, lookup_dcookie.2, mbind.2, migrate_pages.2: Add notes about missing glibc wrappers 2021-02-06 21:45:41 +01:00
lremovexattr.2
lseek.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
lsetxattr.2
lstat.2
lstat64.2
madvise.2 madvise.2: SEE ALSO: add process_madvise(2) 2021-02-02 11:43:15 +01:00
madvise1.2
mbind.2 bdflush.2, capget.2, get_mempolicy.2, ipc.2, lookup_dcookie.2, mbind.2, migrate_pages.2: Add notes about missing glibc wrappers 2021-02-06 21:45:41 +01:00
membarrier.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
memfd_create.2 Various pages: use real minus signs in pathnames 2021-01-21 10:29:14 +01:00
migrate_pages.2 bdflush.2, capget.2, get_mempolicy.2, ipc.2, lookup_dcookie.2, mbind.2, migrate_pages.2: Add notes about missing glibc wrappers 2021-02-06 21:45:41 +01:00
mincore.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
mkdir.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:51 +01:00
mkdirat.2
mknod.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:51 +01:00
mknodat.2
mlock.2 mlock.2: mlock2(): Fix prototype parameter types 2021-02-09 19:37:28 +01:00
mlock2.2 mlock.2, mlock2.2: Document mlock2(2) and MCL_ONFAULT 2015-12-14 22:27:38 +01:00
mlockall.2
mmap.2 mmap.2: wfix 2021-01-28 14:08:52 +01:00
mmap2.2 mmap2.2: Fix prototype parameter types 2021-02-09 19:39:47 +01:00
modify_ldt.2 _exit.2, capget.2, fcntl.2, futex.2, listen.2, memfd_create.2, modify_ldt.2, move_pages.2, open.2, perf_event_open.2, ptrace.2, set_thread_area.2, stime.2, syscall.2, sysctl.2, userfaultfd.2, cmsg.3, exit.3, ftime.3, getpt.3, malloc.3, console_codes.4, loop.4, inotify.7, netlink.7, packet.7, rtnetlink.7, tcp.7, unix.7, vsock.7, ldconfig.8: tstamp 2020-02-09 11:53:28 +01:00
mount.2 mount.2: Note that the 'data' argument can be NULL 2021-01-20 13:12:33 +01:00
move_pages.2 Various pages: use "\-" to generate real minus in circumstances where appropriate 2021-01-21 10:53:59 +01:00
mprotect.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
mpx.2
mq_getsetattr.2 mq_getsetattr.2: Use 'const' when appropriate 2020-11-01 18:23:38 +01:00
mq_notify.2 getcwd.2, mq_notify.2, mq_open.2, mq_timedreceive.2, mq_timedsend.2, mq_unlink.2: Reinstate links to section 3 pages that document system calls 2020-09-20 13:41:38 +02:00
mq_open.2 getcwd.2, mq_notify.2, mq_open.2, mq_timedreceive.2, mq_timedsend.2, mq_unlink.2: Reinstate links to section 3 pages that document system calls 2020-09-20 13:41:38 +02:00
mq_timedreceive.2 getcwd.2, mq_notify.2, mq_open.2, mq_timedreceive.2, mq_timedsend.2, mq_unlink.2: Reinstate links to section 3 pages that document system calls 2020-09-20 13:41:38 +02:00
mq_timedsend.2 getcwd.2, mq_notify.2, mq_open.2, mq_timedreceive.2, mq_timedsend.2, mq_unlink.2: Reinstate links to section 3 pages that document system calls 2020-09-20 13:41:38 +02:00
mq_unlink.2 getcwd.2, mq_notify.2, mq_open.2, mq_timedreceive.2, mq_timedsend.2, mq_unlink.2: Reinstate links to section 3 pages that document system calls 2020-09-20 13:41:38 +02:00
mremap.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
msgctl.2 ioctl_console.2, msgctl.2, msgget.2, msgop.2, semctl.2, semget.2, semop.2, shm_open.3, shmget.2, shmop.2: ERRORS: remove redundant statement that 'errno' is set 2021-01-09 10:21:57 +01:00
msgget.2 ioctl_console.2, msgctl.2, msgget.2, msgop.2, semctl.2, semget.2, semop.2, shm_open.3, shmget.2, shmop.2: ERRORS: remove redundant statement that 'errno' is set 2021-01-09 10:21:57 +01:00
msgop.2 ioctl_console.2, msgctl.2, msgget.2, msgop.2, semctl.2, semget.2, semop.2, shm_open.3, shmget.2, shmop.2: ERRORS: remove redundant statement that 'errno' is set 2021-01-09 10:21:57 +01:00
msgrcv.2
msgsnd.2
msync.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
munlock.2
munlockall.2
munmap.2
name_to_handle_at.2
nanosleep.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
newfstatat.2 newfstatat.2: New link to fstatat64.2 2015-04-11 08:46:26 +02:00
nfsservctl.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
nice.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
oldfstat.2
oldlstat.2
oldolduname.2
oldstat.2
olduname.2
open.2 Various pages: use "\-" to generate real minus in circumstances where appropriate 2021-01-21 10:53:59 +01:00
open_by_handle_at.2 Various pages: use "\-" to generate real minus in circumstances where appropriate 2021-01-21 10:53:59 +01:00
openat.2
openat2.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
outb.2 memusage.1, pldd.1, sprof.1, add_key.2, bind.2, bpf.2, clone.2, dup.2, epoll_ctl.2, eventfd.2, fanotify_init.2, fanotify_mark.2, futex.2, getdents.2, getpid.2, getrlimit.2, intro.2, ioctl_fat.2, ioctl_ns.2, kcmp.2, keyctl.2, membarrier.2, memfd_create.2, mprotect.2, msgctl.2, msgop.2, nfsservctl.2, open.2, open_by_handle_at.2, openat2.2, outb.2, perf_event_open.2, pivot_root.2, recv.2, recvmmsg.2, request_key.2, sched_setaffinity.2, sched_setattr.2, seccomp.2, select.2, send.2, signalfd.2, spu_run.2, sysctl.2, timer_create.2, userfaultfd.2, wait.2, CPU_SET.3, abs.3, argz_add.3, backtrace.3, bsearch.3, bswap.3, clock_getcpuclockid.3, cmsg.3, dl_iterate_phdr.3, dlinfo.3, dlopen.3, drand48.3, drand48_r.3, duplocale.3, encrypt.3, endian.3, envz_add.3, errno.3, ffs.3, fopencookie.3, get_phys_pages.3, getaddrinfo.3, getaddrinfo_a.3, getdate.3, getgrent_r.3, getgrouplist.3, getifaddrs.3, getline.3, getprotoent_r.3, getpwent_r.3, getpwnam.3, getservent_r.3, hsearch.3, insque.3, intro.3, lrint.3, lround.3, lseek64.3, mallinfo.3, malloc_hook.3, malloc_info.3, mbsinit.3, mbstowcs.3, mtrace.3, newlocale.3, ntp_gettime.3, offsetof.3, perror.3, posix_fallocate.3, posix_spawn.3, printf.3, psignal.3, pthread_attr_init.3, pthread_create.3, pthread_getattr_np.3, pthread_getcpuclockid.3, pthread_setaffinity_np.3, pthread_setname_np.3, pthread_sigmask.3, qsort.3, rand.3, random.3, rpc.3, rtnetlink.3, scalbln.3, shm_open.3, stdarg.3, strcat.3, strerror.3, strfmon.3, strptime.3, strsignal.3, strtod.3, strtok.3, strtol.3, strtoul.3, tsearch.3, wordexp.3, loop.4, vcs.4, veth.4, core.5, locale.5, slabinfo.5, cgroup_namespaces.7, cpuset.7, credentials.7, fanotify.7, feature_test_macros.7, inotify.7, ip.7, kernel_lockdown.7, man.7, mount_namespaces.7, namespaces.7, pid_namespaces.7, rtld-audit.7, sigevent.7, sock_diag.7, standards.7, unix.7, user_namespaces.7: tstamp 2020-11-01 21:56:08 +01:00
outb_p.2
outl.2
outl_p.2
outsb.2
outsl.2
outsw.2
outw.2
outw_p.2
pause.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
pciconfig_iobase.2
pciconfig_read.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
pciconfig_write.2
perf_event_open.2 Various pages: use real minus signs in pathnames 2021-01-21 10:29:14 +01:00
perfmonctl.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:27 +01:00
personality.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
phys.2
pidfd_getfd.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:27 +01:00
pidfd_open.2 pidfd_open.2: Note the process_madvise(2) use case for PID file descriptors 2021-02-02 11:43:15 +01:00
pidfd_send_signal.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:27 +01:00
pipe.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:51 +01:00
pipe2.2
pivot_root.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
pkey_alloc.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
pkey_free.2 pkey_free.2: New link to new pkey_alloc(2) page 2016-10-17 14:04:11 +02:00
pkey_mprotect.2 pkey_mprotect.2: New link to mprotect(2) 2016-10-17 14:04:11 +02:00
poll.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:27 +01:00
posix_fadvise.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
ppoll.2
prctl.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
pread.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:27 +01:00
pread64.2
preadv.2
preadv2.2 preadv2.2: New link to readv(2) 2016-05-16 22:18:33 +02:00
prlimit.2
prlimit64.2 prlimit64.2: New link to getrlimit.2 2015-04-11 08:46:26 +02:00
process_madvise.2 process_madvise.2: Restructure the text in DESCRIPTION a little 2021-02-02 11:43:15 +01:00
process_vm_readv.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
process_vm_writev.2
prof.2
pselect.2
pselect6.2
ptrace.2 Various pages: use "\-" to generate real minus in circumstances where appropriate 2021-01-21 10:53:59 +01:00
putmsg.2
putpmsg.2
pwrite.2
pwrite64.2
pwritev.2
pwritev2.2 pwritev2.2: New link to readv(2) 2016-05-16 22:20:14 +02:00
query_module.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
quotactl.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
read.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
readahead.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:27 +01:00
readdir.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
readlink.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
readlinkat.2
readv.2 mprotect.2, readv.2, sigaltstack.2, sigreturn.2, ctime.3, scandir.3, random.4, pkeys.7: ffix: s/-1/\-1/ 2021-01-09 22:08:50 +01:00
reboot.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
recv.2 getpriority.2, recv.2, fts.3: wfix 2021-02-07 12:01:36 +01:00
recvfrom.2
recvmmsg.2 memusage.1, pldd.1, sprof.1, add_key.2, bind.2, bpf.2, clone.2, dup.2, epoll_ctl.2, eventfd.2, fanotify_init.2, fanotify_mark.2, futex.2, getdents.2, getpid.2, getrlimit.2, intro.2, ioctl_fat.2, ioctl_ns.2, kcmp.2, keyctl.2, membarrier.2, memfd_create.2, mprotect.2, msgctl.2, msgop.2, nfsservctl.2, open.2, open_by_handle_at.2, openat2.2, outb.2, perf_event_open.2, pivot_root.2, recv.2, recvmmsg.2, request_key.2, sched_setaffinity.2, sched_setattr.2, seccomp.2, select.2, send.2, signalfd.2, spu_run.2, sysctl.2, timer_create.2, userfaultfd.2, wait.2, CPU_SET.3, abs.3, argz_add.3, backtrace.3, bsearch.3, bswap.3, clock_getcpuclockid.3, cmsg.3, dl_iterate_phdr.3, dlinfo.3, dlopen.3, drand48.3, drand48_r.3, duplocale.3, encrypt.3, endian.3, envz_add.3, errno.3, ffs.3, fopencookie.3, get_phys_pages.3, getaddrinfo.3, getaddrinfo_a.3, getdate.3, getgrent_r.3, getgrouplist.3, getifaddrs.3, getline.3, getprotoent_r.3, getpwent_r.3, getpwnam.3, getservent_r.3, hsearch.3, insque.3, intro.3, lrint.3, lround.3, lseek64.3, mallinfo.3, malloc_hook.3, malloc_info.3, mbsinit.3, mbstowcs.3, mtrace.3, newlocale.3, ntp_gettime.3, offsetof.3, perror.3, posix_fallocate.3, posix_spawn.3, printf.3, psignal.3, pthread_attr_init.3, pthread_create.3, pthread_getattr_np.3, pthread_getcpuclockid.3, pthread_setaffinity_np.3, pthread_setname_np.3, pthread_sigmask.3, qsort.3, rand.3, random.3, rpc.3, rtnetlink.3, scalbln.3, shm_open.3, stdarg.3, strcat.3, strerror.3, strfmon.3, strptime.3, strsignal.3, strtod.3, strtok.3, strtol.3, strtoul.3, tsearch.3, wordexp.3, loop.4, vcs.4, veth.4, core.5, locale.5, slabinfo.5, cgroup_namespaces.7, cpuset.7, credentials.7, fanotify.7, feature_test_macros.7, inotify.7, ip.7, kernel_lockdown.7, man.7, mount_namespaces.7, namespaces.7, pid_namespaces.7, rtld-audit.7, sigevent.7, sock_diag.7, standards.7, unix.7, user_namespaces.7: tstamp 2020-11-01 21:56:08 +01:00
recvmsg.2
remap_file_pages.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
removexattr.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
rename.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
renameat.2
renameat2.2
request_key.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:27 +01:00
restart_syscall.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
rmdir.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
rt_sigaction.2
rt_sigpending.2
rt_sigprocmask.2
rt_sigqueueinfo.2 Various pages: use "\-" to generate real minus in circumstances where appropriate 2021-01-21 10:53:59 +01:00
rt_sigreturn.2
rt_sigsuspend.2
rt_sigtimedwait.2
rt_tgsigqueueinfo.2
s390_guarded_storage.2 s390_guarded_storage.2: tfix 2021-02-04 22:36:46 +01:00
s390_pci_mmio_read.2
s390_pci_mmio_write.2 Various pages: Various improvements in wording in RETURN VALUE 2021-01-07 14:29:00 +01:00
s390_runtime_instr.2 Various pages: Various improvements in wording in RETURN VALUE 2021-01-07 14:29:00 +01:00
s390_sthyi.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
sbrk.2
sched_get_priority_max.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
sched_get_priority_min.2
sched_getaffinity.2
sched_getattr.2
sched_getparam.2
sched_getscheduler.2
sched_rr_get_interval.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
sched_setaffinity.2 Various pages: use real minus signs in pathnames 2021-01-21 10:29:14 +01:00
sched_setattr.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:27 +01:00
sched_setparam.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
sched_setscheduler.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
sched_yield.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
seccomp.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
security.2
select.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
select_tut.2 bind.2, clone.2, dup.2, futex.2, mprotect.2, open_by_handle_at.2, pivot_root.2, select_tut.2, shmop.2, timer_create.2, userfaultfd.2, getaddrinfo.3, getaddrinfo_a.3, inet_net_pton.3, malloc_info.3, mbstowcs.3, newlocale.3, posix_spawn.3, pthread_sigmask.3, shm_open.3, strtol.3, inotify.7, user_namespaces.7: Add periods at end of sentences in comments 2020-12-27 12:32:44 +01:00
semctl.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
semget.2 semget.2, shm_open.3: tfix 2021-01-24 23:33:35 +01:00
semop.2 ioctl_console.2, msgctl.2, msgget.2, msgop.2, semctl.2, semget.2, semop.2, shm_open.3, shmget.2, shmop.2: ERRORS: remove redundant statement that 'errno' is set 2021-01-09 10:21:57 +01:00
semtimedop.2
send.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
sendfile.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
sendfile64.2
sendmmsg.2 iconv.1, locale.1, memusage.1, memusagestat.1, pldd.1, sprof.1, _syscall.2, add_key.2, adjtimex.2, bind.2, bpf.2, chown.2, clone.2, close.2, copy_file_range.2, eventfd.2, fanotify_init.2, fanotify_mark.2, fork.2, fsync.2, futex.2, getdents.2, getrlimit.2, getxattr.2, io_cancel.2, io_destroy.2, io_getevents.2, io_setup.2, ioctl_fat.2, ioctl_getfsmap.2, ioctl_ns.2, ioctl_tty.2, ioctl_userfaultfd.2, kcmp.2, keyctl.2, listen.2, listxattr.2, mbind.2, membarrier.2, memfd_create.2, mkdir.2, move_pages.2, mremap.2, msync.2, nfsservctl.2, open.2, perf_event_open.2, pidfd_send_signal.2, pipe.2, pivot_root.2, pkey_alloc.2, process_vm_readv.2, ptrace.2, readlink.2, readv.2, recv.2, recvmmsg.2, rename.2, request_key.2, s390_runtime_instr.2, sched_setaffinity.2, seccomp.2, send.2, sendmmsg.2, sigaltstack.2, signalfd.2, socket.2, socketpair.2, splice.2, spu_create.2, spu_run.2, statfs.2, syscall.2, sysctl.2, sysfs.2, tee.2, timer_getoverrun.2, timer_settime.2, umount.2, userfaultfd.2, utimensat.2, wait4.2, INFINITY.3, __ppc_get_timebase.3, __setfpucw.3, abort.3, aio_cancel.3, aio_error.3, aio_read.3, aio_return.3, atexit.3, backtrace.3, basename.3, bsearch.3, bswap.3, cacos.3, cacosh.3, catan.3, catanh.3, cexp2.3, clock_getcpuclockid.3, clog2.3, cmsg.3, confstr.3, div.3, dl_iterate_phdr.3, dlerror.3, dlinfo.3, dlopen.3, dlsym.3, duplocale.3, encrypt.3, end.3, endian.3, envz_add.3, err.3, expm1.3, fdim.3, flockfile.3, fmtmsg.3, frexp.3, ftw.3, get_nprocs_conf.3, get_phys_pages.3, getaddrinfo_a.3, getauxval.3, getdate.3, getdtablesize.3, getgrent_r.3, getgrouplist.3, gethostbyname.3, getline.3, getnameinfo.3, getopt.3, getprotoent_r.3, getpwent_r.3, getpwnam.3, getservent_r.3, getsubopt.3, getutent.3, glob.3, gnu_get_libc_version.3, hsearch.3, if_nameindex.3, inet.3, inet_net_pton.3, inet_ntop.3, inet_pton.3, insque.3, killpg.3, makecontext.3, mallinfo.3, malloc.3, malloc_hook.3, malloc_info.3, mallopt.3, matherr.3, mbsnrtowcs.3, mbstowcs.3, mcheck.3, mempcpy.3, mq_getattr.3, mq_notify.3, mtrace.3, newlocale.3, nextafter.3, ntp_gettime.3, offsetof.3, open_memstream.3, pow.3, printf.3, pthread_attr_init.3, pthread_attr_setdetachstate.3, pthread_attr_setguardsize.3, pthread_attr_setinheritsched.3, pthread_attr_setschedparam.3, pthread_attr_setschedpolicy.3, pthread_attr_setstack.3, pthread_attr_setstacksize.3, pthread_cancel.3, pthread_cleanup_push.3, pthread_create.3, pthread_detach.3, pthread_getattr_default_np.3, pthread_getattr_np.3, pthread_getcpuclockid.3, pthread_join.3, pthread_mutex_consistent.3, pthread_mutexattr_setrobust.3, pthread_setaffinity_np.3, pthread_setcancelstate.3, pthread_setname_np.3, pthread_setschedparam.3, pthread_sigmask.3, pthread_spin_init.3, pthread_testcancel.3, pthread_tryjoin_np.3, ptsname.3, qsort.3, rand.3, random.3, remainder.3, rpmatch.3, rtime.3, rtnetlink.3, scalb.3, scalbln.3, scandir.3, sem_getvalue.3, sem_wait.3, setaliasent.3, setlogmask.3, sigwait.3, sincos.3, sockatmark.3, stdarg.3, stpcpy.3, strcat.3, strfmon.3, strptime.3, strtod.3, strtok.3, strtol.3, strtoul.3, strverscmp.3, tsearch.3, uselocale.3, wcstok.3, wcstombs.3, wordexp.3, y0.3, loop.4, vcs.4, veth.4, charmap.5, core.5, filesystems.5, gai.conf.5, hosts.5, hosts.equiv.5, locale.5, nss.5, repertoiremap.5, securetty.5, shells.5, ttytype.5, ascii.7, complex.7, cpuset.7, credentials.7, fanotify.7, hier.7, inotify.7, ip.7, mount_namespaces.7, mq_overview.7, netlink.7, network_namespaces.7, pid_namespaces.7, pkeys.7, rtld-audit.7, rtnetlink.7, sem_overview.7, signal-safety.7, sock_diag.7, spufs.7, standards.7, symlink.7, tcp.7, time_namespaces.7, unix.7, user_namespaces.7, xattr.7, ldconfig.8: tstamp 2020-06-09 14:48:40 +02:00
sendmsg.2
sendto.2
set_mempolicy.2 getent.1, access.2, cacheflush.2, chroot.2, clock_getres.2, fcntl.2, getrusage.2, io_cancel.2, io_destroy.2, io_getevents.2, io_setup.2, io_submit.2, link.2, llseek.2, mmap.2, mount.2, readv.2, restart_syscall.2, semctl.2, set_mempolicy.2, set_tid_address.2, shmctl.2, sigaction.2, sigaltstack.2, spu_create.2, statfs.2, subpage_prot.2, syscalls.2, timer_getoverrun.2, uselib.2, INFINITY.3, __ppc_set_ppr_med.3, bstring.3, btree.3, ctime.3, fgetc.3, fopen.3, getcontext.3, gethostbyname.3, getnetent.3, getprotoent.3, getservent.3, inet.3, j0.3, list.3, makecontext.3, nextafter.3, posix_memalign.3, profil.3, pthread_tryjoin_np.3, puts.3, rcmd.3, resolver.3, rtime.3, sigsetops.3, strnlen.3, tailq.3, elf.5, filesystems.5, nscd.conf.5, proc.5, utmp.5, attributes.7, ipv6.7, packet.7, pthreads.7, signal-safety.7, signal.7, spufs.7, system_data_types.7, tcp.7: tstamp 2020-12-21 16:19:35 +01:00
set_robust_list.2
set_thread_area.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
set_tid_address.2 getent.1, access.2, cacheflush.2, chroot.2, clock_getres.2, fcntl.2, getrusage.2, io_cancel.2, io_destroy.2, io_getevents.2, io_setup.2, io_submit.2, link.2, llseek.2, mmap.2, mount.2, readv.2, restart_syscall.2, semctl.2, set_mempolicy.2, set_tid_address.2, shmctl.2, sigaction.2, sigaltstack.2, spu_create.2, statfs.2, subpage_prot.2, syscalls.2, timer_getoverrun.2, uselib.2, INFINITY.3, __ppc_set_ppr_med.3, bstring.3, btree.3, ctime.3, fgetc.3, fopen.3, getcontext.3, gethostbyname.3, getnetent.3, getprotoent.3, getservent.3, inet.3, j0.3, list.3, makecontext.3, nextafter.3, posix_memalign.3, profil.3, pthread_tryjoin_np.3, puts.3, rcmd.3, resolver.3, rtime.3, sigsetops.3, strnlen.3, tailq.3, elf.5, filesystems.5, nscd.conf.5, proc.5, utmp.5, attributes.7, ipv6.7, packet.7, pthreads.7, signal-safety.7, signal.7, spufs.7, system_data_types.7, tcp.7: tstamp 2020-12-21 16:19:35 +01:00
setdomainname.2
setegid.2
seteuid.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
setfsgid.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
setfsgid32.2
setfsuid.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
setfsuid32.2
setgid.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
setgid32.2
setgroups.2
setgroups32.2
sethostname.2
setitimer.2
setns.2 setns.2: tfix 2020-12-22 12:00:09 +01:00
setpgid.2 Various pages: Remove redundant "\\ " to escape spaces 2021-01-08 13:42:27 +01:00
setpgrp.2
setpriority.2
setregid.2
setregid32.2
setresgid.2
setresgid32.2
setresuid.2 Various pages: tfix (Oxford comma) 2021-01-09 11:02:33 +01:00
setresuid32.2
setreuid.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
setreuid32.2
setrlimit.2
setsid.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
setsockopt.2
settimeofday.2
setuid.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
setuid32.2
setup.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
setxattr.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
sgetmask.2 Various pages: Further clean-ups after "bring more whitespace consistency in SYNOPSIS" 2021-01-03 13:09:36 +01:00
shmat.2
shmctl.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
shmdt.2
shmget.2 shmget.2: tfix 2021-01-28 14:10:42 +01:00
shmop.2 ioctl_console.2, msgctl.2, msgget.2, msgop.2, semctl.2, semget.2, semop.2, shm_open.3, shmget.2, shmop.2: ERRORS: remove redundant statement that 'errno' is set 2021-01-09 10:21:57 +01:00
shutdown.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
sigaction.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
sigaltstack.2 mprotect.2, readv.2, sigaltstack.2, sigreturn.2, ctime.3, scandir.3, random.4, pkeys.7: ffix: s/-1/\-1/ 2021-01-09 22:08:50 +01:00
signal.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:51 +01:00
signalfd.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
signalfd4.2
sigpending.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:51 +01:00
sigprocmask.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:51 +01:00
sigreturn.2 mprotect.2, readv.2, sigaltstack.2, sigreturn.2, ctime.3, scandir.3, random.4, pkeys.7: ffix: s/-1/\-1/ 2021-01-09 22:08:50 +01:00
sigsuspend.2 Various pages: Simplify mark-up for Feature Test Macro requirements 2021-01-05 11:01:01 +01:00
sigtimedwait.2
sigwaitinfo.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
socket.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
socketcall.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
socketpair.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:51 +01:00
splice.2 iconv.1, locale.1, memusage.1, memusagestat.1, pldd.1, sprof.1, _syscall.2, add_key.2, adjtimex.2, bind.2, bpf.2, chown.2, clone.2, close.2, copy_file_range.2, eventfd.2, fanotify_init.2, fanotify_mark.2, fork.2, fsync.2, futex.2, getdents.2, getrlimit.2, getxattr.2, io_cancel.2, io_destroy.2, io_getevents.2, io_setup.2, ioctl_fat.2, ioctl_getfsmap.2, ioctl_ns.2, ioctl_tty.2, ioctl_userfaultfd.2, kcmp.2, keyctl.2, listen.2, listxattr.2, mbind.2, membarrier.2, memfd_create.2, mkdir.2, move_pages.2, mremap.2, msync.2, nfsservctl.2, open.2, perf_event_open.2, pidfd_send_signal.2, pipe.2, pivot_root.2, pkey_alloc.2, process_vm_readv.2, ptrace.2, readlink.2, readv.2, recv.2, recvmmsg.2, rename.2, request_key.2, s390_runtime_instr.2, sched_setaffinity.2, seccomp.2, send.2, sendmmsg.2, sigaltstack.2, signalfd.2, socket.2, socketpair.2, splice.2, spu_create.2, spu_run.2, statfs.2, syscall.2, sysctl.2, sysfs.2, tee.2, timer_getoverrun.2, timer_settime.2, umount.2, userfaultfd.2, utimensat.2, wait4.2, INFINITY.3, __ppc_get_timebase.3, __setfpucw.3, abort.3, aio_cancel.3, aio_error.3, aio_read.3, aio_return.3, atexit.3, backtrace.3, basename.3, bsearch.3, bswap.3, cacos.3, cacosh.3, catan.3, catanh.3, cexp2.3, clock_getcpuclockid.3, clog2.3, cmsg.3, confstr.3, div.3, dl_iterate_phdr.3, dlerror.3, dlinfo.3, dlopen.3, dlsym.3, duplocale.3, encrypt.3, end.3, endian.3, envz_add.3, err.3, expm1.3, fdim.3, flockfile.3, fmtmsg.3, frexp.3, ftw.3, get_nprocs_conf.3, get_phys_pages.3, getaddrinfo_a.3, getauxval.3, getdate.3, getdtablesize.3, getgrent_r.3, getgrouplist.3, gethostbyname.3, getline.3, getnameinfo.3, getopt.3, getprotoent_r.3, getpwent_r.3, getpwnam.3, getservent_r.3, getsubopt.3, getutent.3, glob.3, gnu_get_libc_version.3, hsearch.3, if_nameindex.3, inet.3, inet_net_pton.3, inet_ntop.3, inet_pton.3, insque.3, killpg.3, makecontext.3, mallinfo.3, malloc.3, malloc_hook.3, malloc_info.3, mallopt.3, matherr.3, mbsnrtowcs.3, mbstowcs.3, mcheck.3, mempcpy.3, mq_getattr.3, mq_notify.3, mtrace.3, newlocale.3, nextafter.3, ntp_gettime.3, offsetof.3, open_memstream.3, pow.3, printf.3, pthread_attr_init.3, pthread_attr_setdetachstate.3, pthread_attr_setguardsize.3, pthread_attr_setinheritsched.3, pthread_attr_setschedparam.3, pthread_attr_setschedpolicy.3, pthread_attr_setstack.3, pthread_attr_setstacksize.3, pthread_cancel.3, pthread_cleanup_push.3, pthread_create.3, pthread_detach.3, pthread_getattr_default_np.3, pthread_getattr_np.3, pthread_getcpuclockid.3, pthread_join.3, pthread_mutex_consistent.3, pthread_mutexattr_setrobust.3, pthread_setaffinity_np.3, pthread_setcancelstate.3, pthread_setname_np.3, pthread_setschedparam.3, pthread_sigmask.3, pthread_spin_init.3, pthread_testcancel.3, pthread_tryjoin_np.3, ptsname.3, qsort.3, rand.3, random.3, remainder.3, rpmatch.3, rtime.3, rtnetlink.3, scalb.3, scalbln.3, scandir.3, sem_getvalue.3, sem_wait.3, setaliasent.3, setlogmask.3, sigwait.3, sincos.3, sockatmark.3, stdarg.3, stpcpy.3, strcat.3, strfmon.3, strptime.3, strtod.3, strtok.3, strtol.3, strtoul.3, strverscmp.3, tsearch.3, uselocale.3, wcstok.3, wcstombs.3, wordexp.3, y0.3, loop.4, vcs.4, veth.4, charmap.5, core.5, filesystems.5, gai.conf.5, hosts.5, hosts.equiv.5, locale.5, nss.5, repertoiremap.5, securetty.5, shells.5, ttytype.5, ascii.7, complex.7, cpuset.7, credentials.7, fanotify.7, hier.7, inotify.7, ip.7, mount_namespaces.7, mq_overview.7, netlink.7, network_namespaces.7, pid_namespaces.7, pkeys.7, rtld-audit.7, rtnetlink.7, sem_overview.7, signal-safety.7, sock_diag.7, spufs.7, standards.7, symlink.7, tcp.7, time_namespaces.7, unix.7, user_namespaces.7, xattr.7, ldconfig.8: tstamp 2020-06-09 14:48:40 +02:00
spu_create.2 Various pages: Various improvements in wording in RETURN VALUE 2021-01-07 14:29:00 +01:00
spu_run.2 Various pages: Various improvements in wording in RETURN VALUE 2021-01-07 14:29:00 +01:00
ssetmask.2
stat.2 stat.2: Remove <unistd.h> from synopsis 2021-02-09 13:27:59 +01:00
stat64.2
statfs.2 Various pages: tfix (Oxford comma) 2021-01-09 11:02:33 +01:00
statfs64.2
statx.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
stime.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
stty.2
subpage_prot.2 Various pages: use real minus signs in pathnames 2021-01-21 10:29:14 +01:00
swapoff.2
swapon.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
symlink.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
symlinkat.2
sync.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
sync_file_range.2 Various pages: use "\-" to generate real minus in circumstances where appropriate 2021-01-21 10:53:59 +01:00
sync_file_range2.2
syncfs.2
syscall.2 Various pages: Simplify mark-up for Feature Test Macro requirements 2021-01-05 11:01:01 +01:00
syscalls.2 syscalls.2: ffix: Improve table formatting 2021-01-06 15:28:02 +01:00
sysctl.2 Various pages: Normalize NOTES about nonexistent glibc wrappers 2020-12-30 16:56:38 +01:00
sysfs.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
sysinfo.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:27 +01:00
syslog.2 clone.2, ioctl_tty.2, syslog.2, setlocale.3, stdio.3, console_codes.4, inode.7, namespaces.7, netlink.7, signal-safety.7, socket.7: Better table formatting 2021-01-07 00:05:48 +01:00
tee.2 iconv.1, locale.1, memusage.1, memusagestat.1, pldd.1, sprof.1, _syscall.2, add_key.2, adjtimex.2, bind.2, bpf.2, chown.2, clone.2, close.2, copy_file_range.2, eventfd.2, fanotify_init.2, fanotify_mark.2, fork.2, fsync.2, futex.2, getdents.2, getrlimit.2, getxattr.2, io_cancel.2, io_destroy.2, io_getevents.2, io_setup.2, ioctl_fat.2, ioctl_getfsmap.2, ioctl_ns.2, ioctl_tty.2, ioctl_userfaultfd.2, kcmp.2, keyctl.2, listen.2, listxattr.2, mbind.2, membarrier.2, memfd_create.2, mkdir.2, move_pages.2, mremap.2, msync.2, nfsservctl.2, open.2, perf_event_open.2, pidfd_send_signal.2, pipe.2, pivot_root.2, pkey_alloc.2, process_vm_readv.2, ptrace.2, readlink.2, readv.2, recv.2, recvmmsg.2, rename.2, request_key.2, s390_runtime_instr.2, sched_setaffinity.2, seccomp.2, send.2, sendmmsg.2, sigaltstack.2, signalfd.2, socket.2, socketpair.2, splice.2, spu_create.2, spu_run.2, statfs.2, syscall.2, sysctl.2, sysfs.2, tee.2, timer_getoverrun.2, timer_settime.2, umount.2, userfaultfd.2, utimensat.2, wait4.2, INFINITY.3, __ppc_get_timebase.3, __setfpucw.3, abort.3, aio_cancel.3, aio_error.3, aio_read.3, aio_return.3, atexit.3, backtrace.3, basename.3, bsearch.3, bswap.3, cacos.3, cacosh.3, catan.3, catanh.3, cexp2.3, clock_getcpuclockid.3, clog2.3, cmsg.3, confstr.3, div.3, dl_iterate_phdr.3, dlerror.3, dlinfo.3, dlopen.3, dlsym.3, duplocale.3, encrypt.3, end.3, endian.3, envz_add.3, err.3, expm1.3, fdim.3, flockfile.3, fmtmsg.3, frexp.3, ftw.3, get_nprocs_conf.3, get_phys_pages.3, getaddrinfo_a.3, getauxval.3, getdate.3, getdtablesize.3, getgrent_r.3, getgrouplist.3, gethostbyname.3, getline.3, getnameinfo.3, getopt.3, getprotoent_r.3, getpwent_r.3, getpwnam.3, getservent_r.3, getsubopt.3, getutent.3, glob.3, gnu_get_libc_version.3, hsearch.3, if_nameindex.3, inet.3, inet_net_pton.3, inet_ntop.3, inet_pton.3, insque.3, killpg.3, makecontext.3, mallinfo.3, malloc.3, malloc_hook.3, malloc_info.3, mallopt.3, matherr.3, mbsnrtowcs.3, mbstowcs.3, mcheck.3, mempcpy.3, mq_getattr.3, mq_notify.3, mtrace.3, newlocale.3, nextafter.3, ntp_gettime.3, offsetof.3, open_memstream.3, pow.3, printf.3, pthread_attr_init.3, pthread_attr_setdetachstate.3, pthread_attr_setguardsize.3, pthread_attr_setinheritsched.3, pthread_attr_setschedparam.3, pthread_attr_setschedpolicy.3, pthread_attr_setstack.3, pthread_attr_setstacksize.3, pthread_cancel.3, pthread_cleanup_push.3, pthread_create.3, pthread_detach.3, pthread_getattr_default_np.3, pthread_getattr_np.3, pthread_getcpuclockid.3, pthread_join.3, pthread_mutex_consistent.3, pthread_mutexattr_setrobust.3, pthread_setaffinity_np.3, pthread_setcancelstate.3, pthread_setname_np.3, pthread_setschedparam.3, pthread_sigmask.3, pthread_spin_init.3, pthread_testcancel.3, pthread_tryjoin_np.3, ptsname.3, qsort.3, rand.3, random.3, remainder.3, rpmatch.3, rtime.3, rtnetlink.3, scalb.3, scalbln.3, scandir.3, sem_getvalue.3, sem_wait.3, setaliasent.3, setlogmask.3, sigwait.3, sincos.3, sockatmark.3, stdarg.3, stpcpy.3, strcat.3, strfmon.3, strptime.3, strtod.3, strtok.3, strtol.3, strtoul.3, strverscmp.3, tsearch.3, uselocale.3, wcstok.3, wcstombs.3, wordexp.3, y0.3, loop.4, vcs.4, veth.4, charmap.5, core.5, filesystems.5, gai.conf.5, hosts.5, hosts.equiv.5, locale.5, nss.5, repertoiremap.5, securetty.5, shells.5, ttytype.5, ascii.7, complex.7, cpuset.7, credentials.7, fanotify.7, hier.7, inotify.7, ip.7, mount_namespaces.7, mq_overview.7, netlink.7, network_namespaces.7, pid_namespaces.7, pkeys.7, rtld-audit.7, rtnetlink.7, sem_overview.7, signal-safety.7, sock_diag.7, spufs.7, standards.7, symlink.7, tcp.7, time_namespaces.7, unix.7, user_namespaces.7, xattr.7, ldconfig.8: tstamp 2020-06-09 14:48:40 +02:00
tgkill.2
time.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
timer_create.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
timer_delete.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
timer_getoverrun.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
timer_gettime.2
timer_settime.2 Various pages: use "\-" to generate real minus in circumstances where appropriate 2021-01-21 10:53:59 +01:00
timerfd_create.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
timerfd_gettime.2
timerfd_settime.2
times.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
tkill.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
truncate.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
truncate64.2
tuxcall.2
ugetrlimit.2
umask.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
umount.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
umount2.2
uname.2 Various pages: Inside code blocks (.EX/.EE) use \- to get real minus signs 2021-01-21 10:29:14 +01:00
unimplemented.2 Various pages: Use .nf/.fi in SYNOPSIS 2021-01-03 13:09:47 +01:00
unlink.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
unlinkat.2
unshare.2 Various pages: use real minus signs in pathnames 2021-01-21 10:29:14 +01:00
uselib.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
userfaultfd.2 Various pages: use real minus signs in pathnames 2021-01-21 10:29:14 +01:00
ustat.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
utime.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
utimensat.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
utimes.2
vfork.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
vhangup.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
vm86.2 Various pages: Standardize wording around setting of 'errno' on error 2021-01-07 14:27:35 +01:00
vm86old.2
vmsplice.2 futex.2, syscalls.2, vmsplice.2, bpf-helpers.7: wfix: Write consistently 'user space' instead of 'userspace' 2021-01-05 12:48:33 +01:00
vserver.2
wait.2 wait.2: Minor wording fixes in RETURN VALUE 2021-01-07 14:29:14 +01:00
wait3.2
wait4.2 Various pages: Remove redundant escaping of space characters in FTM info 2021-01-06 13:46:44 +01:00
waitid.2
waitpid.2
write.2 write.2: wfix 2021-01-09 09:59:10 +01:00
writev.2