1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: man-pages
Upstream-Contact: Michael Kerrisk <mtk.manpages@gmail.com>, linux-man@vger.kernel.org
Source: https://www.kernel.org/pub/linux/docs/man-pages/
Files: *
Copyright: © 2005-2021 Michael Kerrisk <mtk.manpages@gmail.com>
© 2022-2025 Alejandro Colomar <alx@kernel.org>
License: GPL-2+
Files: debian/*
Copyright: © 1996-2010 Joey Schulze <joey@infodrom.org>
© 1997-2001 Nicolás Lichtmaier <nick@debian.org>
© 2011-2015 Simon Paillard <spaillard@debian.org>
© 2015-2026 Dr. Tobias Quathamer <toddy@debian.org>
© 2022-2024 Marcos Fouces <marcos@debian.org>
License: GPL-2+
Files: scripts/*
Copyright: © 2005-2008 & 2013 Michael Kerrisk <mtk.manpages@gmail.com>
© 2013 Peter Schiffer <pschiffe@redhat.com>
© 2020-2025 Alejandro Colomar <alx@kernel.org>
License: GPL-2+
Files: man/man2/futex.2 man/man2/getitimer.2 man/man2/nfsservctl.2
man/man2/pciconfig_read.2 man/man2const/FUTEX_CMP_REQUEUE.2const
man/man2const/FUTEX_CMP_REQUEUE_PI.2const
man/man2const/FUTEX_FD.2const man/man2const/FUTEX_LOCK_PI.2const
man/man2const/FUTEX_LOCK_PI2.2const
man/man2const/FUTEX_REQUEUE.2const
man/man2const/FUTEX_TRYLOCK_PI.2const
man/man2const/FUTEX_UNLOCK_PI.2const man/man2const/FUTEX_WAIT.2const
man/man2const/FUTEX_WAIT_BITSET.2const
man/man2const/FUTEX_WAIT_REQUEUE_PI.2const
man/man2const/FUTEX_WAKE.2const man/man2const/FUTEX_WAKE_OP.2const
man/man3/backtrace.3 man/man3/error.3 man/man3/getnameinfo.3
man/man3/getpt.3 man/man3/getrpcent.3 man/man3/getrpcport.3
man/man3/getsubopt.3 man/man3/grantpt.3 man/man3/offsetof.3
man/man3/program_invocation_name.3 man/man3/ptsname.3 man/man3/rpc.3
man/man3/rpmatch.3 man/man3/stdin.3 man/man3/unlockpt.3
man/man3/xdr.3 man/man4/pts.4 man/man5/elf.5 man/man5/resolv.conf.5
man/man5/rpc.5 man/man5/tzfile.5 man/man7/bpf-helpers.7
man/man7/mailaddr.7 man/man7/regex.7 man/man7/vdso.7 man/man8/ld.so.8
man/man8/tzselect.8 man/man8/zdump.8 man/man8/zic.8
Copyright: 1983-1987, The Regents of the University of California.
1986, The Regents of the University of California.
1992-1994, Henry Spencer
1993, Darren Senn <sinster@scintilla.santa-clara.ca.us>
1999, Jeroen Ruigrok van der Werven
2004, Arnt Gulbrandsen <agulbra@troll.no>
2006, Justin Pryzby <justinpryzby@users.sf.net>
2006, Michael Kerrisk <mtk.manpages@gmail.com>
2007, Justin Pryzby <justinpryzby@users.sf.net>
2007, Michael Kerrisk <mtk.manpages@gmail.com>
2007-2016, Michael Kerrisk <mtk.manpages@gmail.com>
2015, Michael Kerrisk <mtk.manpages@gmail.com>
2016, Michael Kerrisk <mtk.manpages@gmail.com>
License: permissive
may be freely modified and distributed
Files: man/man3/timespec_get.3
Copyright: © 2026 Alejandro Colomar <alx@kernel.org>
License: 0BSD
Files: man/man3head/sysexits.h.3head
Copyright: 1996, Joerg Wunsch
License: BSD-2-clause
Files: man/man3/circleq.3 man/man3/getloadavg.3 man/man3/list.3
man/man3/openpty.3 man/man3/slist.3 man/man3/stailq.3
man/man3/tailq.3 man/man7/operator.7 man/man7/queue.7
man/man7/string_copying.7 man/man7/symlink.7
Copyright: 1989-1993, The Regents of the University of California.
1992-1994, The Regents of the University of California.
1993, The Regents of the University of California.
2008-2014, Michael Kerrisk <mtk.manpages@gmail.com>
License: BSD-3-clause
Files: man/man2/accept.2 man/man2/getpeername.2 man/man2/getpriority.2
man/man2/getsockname.2 man/man2/getsockopt.2 man/man2/ioctl.2
man/man2/listen.2 man/man2/lseek.2 man/man2/readlink.2
man/man2/recv.2 man/man2/send.2 man/man2/setpgid.2
man/man2/setreuid.2 man/man2/shutdown.2 man/man2/socket.2
man/man2/socketpair.2 man/man2/syscall.2 man/man2/truncate.2
man/man3/alloca.3 man/man3/btree.3 man/man3/daemon.3
man/man3/dbopen.3 man/man3/err.3 man/man3/exec.3 man/man3/fclose.3
man/man3/ferror.3 man/man3/fflush.3 man/man3/fileno.3
man/man3/fopen.3 man/man3/fread.3 man/man3/fseek.3 man/man3/fts.3
man/man3/hash.3 man/man3/killpg.3 man/man3/mpool.3 man/man3/popen.3
man/man3/rcmd.3 man/man3/recno.3 man/man3/rexec.3 man/man3/setbuf.3
man/man3/sscanf.3 man/man3/stdarg.3 man/man3/stdio.3
man/man3/strtod.3 man/man7/hostname.7
Copyright: 1980-1991, Regents of the University of California.
1980-1991, The Regents of the University of California.
1980-1993, The Regents of the University of California.
1983-1991, Regents of the University of California.
1983-1991, The Regents of the University of California.
1983-1993, The Regents of the University of California.
1987-1993, The Regents of the University of California.
1989-1994, The Regents of the University of California.
1990-1991, Regents of the University of California.
1990-1991, The Regents of the University of California.
1990-1993, The Regents of the University of California.
1991, The Regents of the University of California.
1993, The Regents of the University of California.
2006-2014, Michael Kerrisk <mtk.manpages@gmail.com>
2007, Michael Kerrisk <mtk.manpages@gmail.com>
2009-2015, Michael Kerrisk <mtk.manpages@gmail.com>
2011, Guillem Jover <guillem@hadrons.org>
2011, Michael Kerrisk <mtk.manpages@gmail.com>
2020, Arkadiusz Drabczyk <arkadiusz@drabczyk.org>
2021, Michael Kerrisk <mtk.manpages@gmail.com>
License: BSD-4-clause
Files: man/man2/bind.2 man/man2/connect.2
Copyright: 1983, The Regents of the University of California.
1993, Rickard E. Faith <faith@cs.unc.edu>
2005-2007, Michael Kerrisk <mtk.manpages@gmail.com>
License: BSD-4-clause and Linux-man-pages-copyleft
Files: man/man7/futex.7
Copyright: (could not be detected automatically)
License: Expat
Files: man/man1/ldd.1 man/man1/time.1 man/man2/capget.2 man/man2/clone.2
man/man2/create_module.2 man/man2/get_kernel_syms.2
man/man2/io_cancel.2 man/man2/io_destroy.2 man/man2/io_getevents.2
man/man2/io_setup.2 man/man2/io_submit.2 man/man2/ioctl_tty.2
man/man2/mkdir.2 man/man2/mknod.2 man/man2/query_module.2
man/man2/set_thread_area.2 man/man2/unshare.2
man/man2const/FIONREAD.2const man/man2const/TCSBRK.2const
man/man2const/TCSETS.2const man/man2const/TCXONC.2const
man/man2const/TIOCCONS.2const man/man2const/TIOCEXCL.2const
man/man2const/TIOCMSET.2const man/man2const/TIOCPKT.2const
man/man2const/TIOCSCTTY.2const man/man2const/TIOCSETD.2const
man/man2const/TIOCSLCKTRMIOS.2const man/man2const/TIOCSPGRP.2const
man/man2const/TIOCSSOFTCAR.2const man/man2const/TIOCSTI.2const
man/man2const/TIOCSWINSZ.2const man/man2const/TIOCTTYGSTRUCT.2const
man/man3/__setfpucw.3 man/man3/a64l.3 man/man3/addseverity.3
man/man3/argz_add.3 man/man3/cabs.3 man/man3/cacos.3
man/man3/cacosh.3 man/man3/carg.3 man/man3/casin.3 man/man3/casinh.3
man/man3/catan.3 man/man3/catanh.3 man/man3/ccos.3 man/man3/ccosh.3
man/man3/cexp.3 man/man3/cexp2.3 man/man3/cimag.3 man/man3/clog.3
man/man3/clog10.3 man/man3/clog2.3 man/man3/conj.3 man/man3/cpow.3
man/man3/cproj.3 man/man3/creal.3 man/man3/csin.3 man/man3/csinh.3
man/man3/csqrt.3 man/man3/ctan.3 man/man3/ctanh.3
man/man3/des_crypt.3 man/man3/envz_add.3 man/man3/fdim.3
man/man3/fma.3 man/man3/fmax.3 man/man3/fmemopen.3 man/man3/fmin.3
man/man3/fmtmsg.3 man/man3/fpclassify.3 man/man3/gamma.3
man/man3/getspnam.3 man/man3/getttyent.3 man/man3/isgreater.3
man/man3/key_setsecret.3 man/man3/lgamma.3 man/man3/malloc_hook.3
man/man3/mempcpy.3 man/man3/nan.3 man/man3/netlink.3
man/man3/nextafter.3 man/man3/open_memstream.3 man/man3/putgrent.3
man/man3/remquo.3 man/man3/rtime.3 man/man3/setaliasent.3
man/man3/setnetgrent.3 man/man3/signbit.3 man/man3/significand.3
man/man3/sincos.3 man/man3/tgamma.3 man/man3/xcrypt.3
man/man4/wavelan.4 man/man5/hosts.equiv.5 man/man7/boot.7
man/man7/complex.7 man/man7/netlink.7
Copyright: 1992, Drew Eckhardt <drew@cs.colorado.edu>
1993, Eric Young
1993-1994, Ian Jackson <iwj10@cus.cam.ac.uk>
1995, Peter Tobias <tobias@et-inf.fho-emden.de>
1995, Rickard E. Faith <faith@cs.unc.edu>
1995-2000, David Engel <david@ods.com>
1996, Free Software Foundation, Inc.
1997, J. "MUFTI" Scheurich <mufti@csv.ica.uni-stuttgart.de>
1998, Andi Kleen <andi@firstfloor.org>
2000, Andries E. Brouwer <aeb@cwi.nl>
2000, Ben Collins <bcollins@debian.org>
2000, Jakub Jelinek <jakub@redhat.com>
2001-2019, Michael Kerrisk <mtk.manpages@gmail.com>
2002, Andries Brouwer <aeb@cwi.nl>
2002, Andries E. Brouwer <aeb@cwi.nl>
2002, Walter Harms <walter.harms@informatik.uni-oldenburg.de>
2003, Andries E. Brouwer <aeb@cwi.nl>
2003, Free Software Foundation, Inc.
2003, Walter Harms <walter.harms@informatik.uni-oldenburg.de>
2005-2016, Michael Kerrisk <mtk.manpages@gmail.com>
2006, Janak Desai <janak@us.ibm.com>
2006-2008, Michael Kerrisk <tmk.manpages@gmail.com>
2006-2012, Michael Kerrisk <mtk.manpages@gmail.com>
2006-2014, Michael Kerrisk <mtk.manpages@gmail.com>
2011, Michael Kerrisk <mtk.manpages@gmail.com>
2012-2016, Michael Kerrisk <mtk.manpages@gmail.com>
2015, Andrew Lutomirski <luto@kernel.org>
License: GPL-1+
Files: man/man2/fallocate.2 man/man2/setns.2 man/man4/cciss.4
man/man4/hpsa.4 man/man4/smartpqi.4 man/man5/gai.conf.5
man/man5/nss.5 man/man7/cpuset.7
Copyright: 2006, Red Hat, Inc.
2007, Silicon Graphics, Inc.
2008, Silicon Graphics, Inc.
2011, Eric W. Biederman <ebiederm@xmission.com>
2011, Hewlett-Packard Development Company, L.P.
2011-2012, Michael Kerrisk <mtk.manpages@gmail.com>
2016, PMC-Sierra, Inc.
2016-2018, Microsemi Corp.
2019-2023, Microchip Technology, Inc.
Red Hat, Inc.
License: GPL-2
Files: man/man1/getent.1 man/man1/iconv.1 man/man1/localedef.1
man/man1/memusage.1 man/man1/memusagestat.1 man/man1/mtrace.1
man/man2/_syscall.2 man/man2/acct.2 man/man2/add_key.2
man/man2/adjtimex.2 man/man2/bdflush.2 man/man2/brk.2
man/man2/cacheflush.2 man/man2/epoll_create.2 man/man2/epoll_ctl.2
man/man2/epoll_wait.2 man/man2/eventfd.2 man/man2/getsid.2
man/man2/getxattr.2 man/man2/inotify_add_watch.2
man/man2/inotify_init.2 man/man2/inotify_rm_watch.2
man/man2/ioctl_console.2 man/man2/ioctl_fsmap.2 man/man2/ioctl_kd.2
man/man2/ioctl_vt.2 man/man2/ioperm.2 man/man2/ioprio_set.2
man/man2/ipc.2 man/man2/listxattr.2 man/man2/memfd_create.2
man/man2/memfd_secret.2 man/man2/mlock.2 man/man2/modify_ldt.2
man/man2/mremap.2 man/man2/nanosleep.2 man/man2/outb.2
man/man2/perf_event_open.2 man/man2/ptrace.2 man/man2/removexattr.2
man/man2/request_key.2 man/man2/s390_pci_mmio_write.2
man/man2/s390_runtime_instr.2 man/man2/s390_sthyi.2
man/man2/sched_get_priority_max.2 man/man2/sched_rr_get_interval.2
man/man2/sched_setaffinity.2 man/man2/sched_setparam.2
man/man2/sched_yield.2 man/man2/setsid.2 man/man2/setxattr.2
man/man2/signalfd.2 man/man2/socketcall.2 man/man2/spu_create.2
man/man2/spu_run.2 man/man2/timerfd_create.2 man/man2/unimplemented.2
man/man2const/FICLONE.2const man/man2const/FIDEDUPERANGE.2const
man/man2const/FS_IOC_SETFSLABEL.2const man/man2const/TIOCLINUX.2const
man/man3/MB_CUR_MAX.3 man/man3/MB_LEN_MAX.3
man/man3/__riscv_flush_icache.3 man/man3/aio_cancel.3
man/man3/aio_error.3 man/man3/aio_fsync.3 man/man3/aio_read.3
man/man3/aio_return.3 man/man3/aio_suspend.3 man/man3/aio_write.3
man/man3/btowc.3 man/man3/cfree.3 man/man3/crypt.3 man/man3/dlerror.3
man/man3/dlopen.3 man/man3/dlsym.3 man/man3/encrypt.3
man/man3/errno.3 man/man3/fenv.3 man/man3/fgetwc.3 man/man3/fgetws.3
man/man3/fputwc.3 man/man3/fputws.3 man/man3/ftime.3 man/man3/ftw.3
man/man3/fwide.3 man/man3/getgrent_r.3 man/man3/getpass.3
man/man3/getpwent_r.3 man/man3/getutent.3 man/man3/getwchar.3
man/man3/hsearch.3 man/man3/iconv.3 man/man3/iconv_close.3
man/man3/iconv_open.3 man/man3/iswalnum.3 man/man3/iswalpha.3
man/man3/iswblank.3 man/man3/iswcntrl.3 man/man3/iswctype.3
man/man3/iswdigit.3 man/man3/iswgraph.3 man/man3/iswlower.3
man/man3/iswprint.3 man/man3/iswpunct.3 man/man3/iswspace.3
man/man3/iswupper.3 man/man3/iswxdigit.3 man/man3/lio_listio.3
man/man3/lockf.3 man/man3/login.3 man/man3/mblen.3 man/man3/mbrlen.3
man/man3/mbrtowc.3 man/man3/mbsinit.3 man/man3/mbsnrtowcs.3
man/man3/mbsrtowcs.3 man/man3/mbstowcs.3 man/man3/mbtowc.3
man/man3/nl_langinfo.3 man/man3/perror.3 man/man3/posix_madvise.3
man/man3/printf.3 man/man3/putwchar.3 man/man3/setjmp.3
man/man3/snprintf.3 man/man3/sprintf.3 man/man3/strfmon.3
man/man3/strnlen.3 man/man3/strtoimax.3 man/man3/termios.3
man/man3/towctrans.3 man/man3/towlower.3 man/man3/towupper.3
man/man3/ttyname.3 man/man3/ualarm.3 man/man3/ungetwc.3
man/man3/updwtmp.3 man/man3/wcpcpy.3 man/man3/wcpncpy.3
man/man3/wcrtomb.3 man/man3/wcscasecmp.3 man/man3/wcscat.3
man/man3/wcschr.3 man/man3/wcscmp.3 man/man3/wcscpy.3
man/man3/wcscspn.3 man/man3/wcsdup.3 man/man3/wcslen.3
man/man3/wcsncat.3 man/man3/wcsncmp.3 man/man3/wcsncpy.3
man/man3/wcsnlen.3 man/man3/wcsnrtombs.3 man/man3/wcspbrk.3
man/man3/wcsrchr.3 man/man3/wcsrtombs.3 man/man3/wcsspn.3
man/man3/wcsstr.3 man/man3/wcstoimax.3 man/man3/wcstok.3
man/man3/wcstombs.3 man/man3/wcswidth.3 man/man3/wctob.3
man/man3/wctomb.3 man/man3/wctrans.3 man/man3/wctype.3
man/man3/wcwidth.3 man/man3/wmemchr.3 man/man3/wmemcmp.3
man/man3/wmemcpy.3 man/man3/wmemmove.3 man/man3/wmemset.3
man/man3/wordexp.3 man/man3/wprintf.3 man/man3type/mbstate_t.3type
man/man4/console_codes.4 man/man4/dsp56k.4 man/man4/fd.4
man/man4/hd.4 man/man4/intro.4 man/man4/lirc.4 man/man4/loop.4
man/man4/lp.4 man/man4/mem.4 man/man4/null.4 man/man4/ram.4
man/man4/random.4 man/man4/rtc.4 man/man4/sk98lin.4 man/man4/tty.4
man/man4/ttyS.4 man/man4/vcs.4 man/man4/veth.4 man/man5/charmap.5
man/man5/dir_colors.5 man/man5/filesystems.5 man/man5/ftpusers.5
man/man5/group.5 man/man5/host.conf.5 man/man5/hosts.5
man/man5/intro.5 man/man5/issue.5 man/man5/locale.5 man/man5/motd.5
man/man5/networks.5 man/man5/nologin.5 man/man5/nscd.conf.5
man/man5/nsswitch.conf.5 man/man5/passwd.5 man/man5/protocols.5
man/man5/repertoiremap.5 man/man5/securetty.5 man/man5/shells.5
man/man5/termcap.5 man/man5/ttytype.5 man/man5/utmp.5
man/man6/intro.6 man/man7/armscii-8.7 man/man7/ascii.7
man/man7/attributes.7 man/man7/bootparam.7 man/man7/charsets.7
man/man7/cp1251.7 man/man7/cp1252.7 man/man7/environ.7
man/man7/epoll.7 man/man7/glob.7 man/man7/intro.7
man/man7/iso_8859-1.7 man/man7/iso_8859-10.7 man/man7/iso_8859-11.7
man/man7/iso_8859-13.7 man/man7/iso_8859-14.7 man/man7/iso_8859-15.7
man/man7/iso_8859-16.7 man/man7/iso_8859-2.7 man/man7/iso_8859-3.7
man/man7/iso_8859-4.7 man/man7/iso_8859-5.7 man/man7/iso_8859-6.7
man/man7/iso_8859-7.7 man/man7/iso_8859-8.7 man/man7/iso_8859-9.7
man/man7/kernel_lockdown.7 man/man7/keyrings.7 man/man7/koi8-r.7
man/man7/koi8-u.7 man/man7/persistent-keyring.7
man/man7/posixoptions.7 man/man7/process-keyring.7 man/man7/sched.7
man/man7/session-keyring.7 man/man7/sock_diag.7 man/man7/spufs.7
man/man7/standards.7 man/man7/thread-keyring.7 man/man7/unicode.7
man/man7/user-keyring.7 man/man7/user-session-keyring.7
man/man7/utf-8.7 man/man7/xattr.7 man/man8/iconvconfig.8
man/man8/intro.8 man/man8/ldconfig.8 man/man8/nscd.8
Copyright: 1993, Ulrich Drepper <drepper@redhat.com>
1993-1995, Daniel Quinlan <Daniel.Quinlan@linux.org>
1994, Jochen Hein <jochen.hein@delphi.central.de>
1994-1995, Alain Knaff <Alain.Knaff@imag.fr>
1994-1995, Waldorf GMBH
1995, Andries E. Brouwer <aeb@cwi.nl>
1995, H. Peter Anvin <hpa@storm.net>
1995, James R. Van Zandt <jrv@vanzandt.mv.com>
1995, Mark D. Roth <roth@uiuc.edu>
1995, Martin Schulze <joey@debian.org>
1995, Michael Chastain <mec@shell.portal.com>
1995, Paul Gortmaker <gpg109@rsphy1.anu.edu.au>
1995, Rickard E. Faith <faith@cs.unc.edu>
1995, Yggdrasil Computing, Inc.
1995-1997, Andries E. Brouwer <aeb@cwi.nl>
1995-1997, Paul Gortmaker <gpg109@rsphy1.anu.edu.au>
1995-2001, Markus Kuhn <mkuhn@acm.org>
1996, Andries E. Brouwer <aeb@cwi.nl>
1996, Daniel Quinlan <Daniel.Quinlan@linux.org>
1996, Eric S. Raymond <esr@thyrsus.com>
1996, Markus Kuhn <mkuhn@acm.org>
1996, Thomas Kuhn
1996, Tom Bjorkholm <tomb@mydata.se>
1996-1999, David A. Wheeler <dwheeler@dwheeler.com>
1996-1999, Markus Kuhn <mkuhn@acm.org>
1996-1999, Tom Bjorkholm <tomb@mydata.se>
1996-2001, Markus Kuhn <mkuhn@acm.org>
1997, Andries E. Brouwer <aeb@cwi.nl>
1997, John S. Kallal <kallal@voicenet.com>
1997, Martin Schulze <joey@debian.org>
1997, Nicolás Lichtmaier <nick@debian.org>
1998, Andries E. Brouwer <aeb@cwi.nl>
1999, Andries E. Brouwer <aeb@cwi.nl>
1999, Dimitri Papadopoulos <dpo@club-internet.fr>
1999, Roman Maurer <roman.maurer@hermes.si>
1999, SuSE GmbH
1999, ike Coleman <mkc@acm.org>
1999-2000, SuSE GmbH
1999-2003, Marvell(R) <linux@syskonnect.de>
2000, Andries E. Brouwer <aeb@cwi.nl>
2000, Christoph J. Thompson <obituary@linuxbe.org>
2000, Lars Brinkhoff <lars@nocrew.org>
2000, Manoj Srivastava <srivasta@debian.org>
2000, Nicolás Lichtmaier <nick@debian.org>
2000-2007, Andreas Grünbacher <agruen@gnu.org>
2001, Alexey Mahotkin <alexm@hsys.msk.ru>
2001, Andreas Grünbacher <agruen@gnu.org>
2001, Markus Kuhn <mkuhn@acm.org>
2001, Martin Schulze <joey@debian.org>
2001, Richard Braakman
2001, Silicon Graphics, Inc.
2001-2007, Silicon Graphics, Inc.
2002, Dimitri Papadopoulos <dpo@club-internet.fr>
2002, Ionel Mugurel Ciobîcă <IMCiobica@netscape.net>
2002, Martin Schulze <joey@debian.org>
2002, Robert Love <rlove@rlove.org>
2002, Urs Thuermann <urs@isnogud.escape.de>
2003, Andries E. Brouwer <aeb@cwi.nl>
2003, Davide Libenzi <davidel@xmailserver.org>
2003-2015, Michael Kerrisk <mtk.manpages@gmail.com>
2004, Alastair McKinstry
2004, Michael Kerrisk <mtk.manpages@gmail.com>
2005, Lars Wirzenius <liw@iki.fi>
2005, Robert Love <rlove@rlove.org>
2006, International Business Machines Corp.
2006, Justin Pryzby <justinpryzby@users.sf.net>
2006, Michael Kerrisk <mtk.manpages@gmail.com>
2006, Red Hat, Inc.
2006-2008, Michael Kerrisk <tmk.manpages@gmail.com>
2006-2015, Michael Kerrisk <mtk.manpages@gmail.com>
2007, Michael Kerrisk <mtk.manpages@gmail.com>
2007-2018, Michael Kerrisk <tk.manpages@gmail.com>
2008, Michael Kerrisk <mtk.manpages@gmail.com>
2008, Michael Kerrisk <tk.manpages@gmail.com>
2008, Petr Baudis <pasky@ucw.cz>
2008-2014, Michael Kerrisk <mtk.manpages@gmail.com>
2009, Lefteris Dimitroulakis <edimitro@tee.gr>
2009-2019, Michael Kerrisk <tk.manpages@gmail.com>
2010, Michael Kerrisk <mtk.manpages@gmail.com>
2011, Denys Vlasenko <dvlasenk@redhat.com>
2011, Mark R. Bannister <cambridge@users.sourceforge.net>
2011, Mark R. Bannister <mark@proseconsulting.co.uk>
2012, Eric W. Biederman <ebiederm@xmission.com>
2012, International Business Machines Corp.
2012, Vincent Weaver <vincent.weaver@maine.edu>
2013, Peter Schiffer <pschiffe@redhat.com>
2014, David Herrmann <dh.herrmann@gmail.com>
2014, Juri Lelli <juri.lelli@gmail.com>
2014, Michael Kerrisk <mtk.manpages@gmail.com>
2014, Peter Zijlstra <peterz@infradead.org>
2014, Red Hat, Inc.
2014-2016, Michael Kerrisk <mtk.manpages@gmail.com>
2015, Andrew Lutomirski <luto@kernel.org>
2015, International Business Machines Corp.
2015, Michael Kerrisk <mtk.manpages@gmail.com>
2015-2016, Alec Leamas <leamas.alec@gmail.com>
2015-2016, Michael Kerrisk <mtk.manpages@gmail.com>
2016, Dmitry V. Levin <ldv@altlinux.org>
2016, Michael Kerrisk <mtk.manpages@gmail.com>
2016, Oracle
2016, Pavel Emelyanov <xemul@virtuozzo.com>
2017, International Business Machines Corp.
2017, Oracle
2017, Red Hat, Inc.
2018, Red Hat, Inc.
2021, International Business Machines Corp.
2021, Microsoft Corp.
2024, Rivos, Inc.
License: GPL-2+
Files: man/man3/scandir.3
Copyright: 1993, David Metcalfe <david@prism.demon.co.uk>
2006, Michael Kerrisk <mtk.manpages@gmail.com>
2012, Mark R. Bannister <mark@proseconsulting.co.uk>
License: GPL-2+ and Linux-man-pages-copyleft
Files: man/man5/proc.5 man/man5/proc_apm.5 man/man5/proc_buddyinfo.5
man/man5/proc_bus.5 man/man5/proc_cgroups.5 man/man5/proc_cmdline.5
man/man5/proc_config.gz.5 man/man5/proc_cpuinfo.5
man/man5/proc_crypto.5 man/man5/proc_devices.5
man/man5/proc_diskstats.5 man/man5/proc_dma.5 man/man5/proc_driver.5
man/man5/proc_execdomains.5 man/man5/proc_fb.5
man/man5/proc_filesystems.5 man/man5/proc_fs.5 man/man5/proc_ide.5
man/man5/proc_interrupts.5 man/man5/proc_iomem.5
man/man5/proc_ioports.5 man/man5/proc_kallsyms.5
man/man5/proc_kcore.5 man/man5/proc_keys.5 man/man5/proc_kmsg.5
man/man5/proc_kpagecgroup.5 man/man5/proc_kpagecount.5
man/man5/proc_kpageflags.5 man/man5/proc_loadavg.5
man/man5/proc_locks.5 man/man5/proc_malloc.5 man/man5/proc_meminfo.5
man/man5/proc_modules.5 man/man5/proc_mtrr.5
man/man5/proc_partitions.5 man/man5/proc_pci.5 man/man5/proc_pid.5
man/man5/proc_pid_attr.5 man/man5/proc_pid_autogroup.5
man/man5/proc_pid_auxv.5 man/man5/proc_pid_cgroup.5
man/man5/proc_pid_clear_refs.5 man/man5/proc_pid_cmdline.5
man/man5/proc_pid_comm.5 man/man5/proc_pid_coredump_filter.5
man/man5/proc_pid_cpuset.5 man/man5/proc_pid_cwd.5
man/man5/proc_pid_environ.5 man/man5/proc_pid_exe.5
man/man5/proc_pid_fd.5 man/man5/proc_pid_fdinfo.5
man/man5/proc_pid_io.5 man/man5/proc_pid_limits.5
man/man5/proc_pid_map_files.5 man/man5/proc_pid_maps.5
man/man5/proc_pid_mem.5 man/man5/proc_pid_mountinfo.5
man/man5/proc_pid_mounts.5 man/man5/proc_pid_mountstats.5
man/man5/proc_pid_net.5 man/man5/proc_pid_ns.5
man/man5/proc_pid_numa_maps.5 man/man5/proc_pid_oom_score.5
man/man5/proc_pid_oom_score_adj.5 man/man5/proc_pid_pagemap.5
man/man5/proc_pid_personality.5 man/man5/proc_pid_projid_map.5
man/man5/proc_pid_root.5 man/man5/proc_pid_seccomp.5
man/man5/proc_pid_setgroups.5 man/man5/proc_pid_smaps.5
man/man5/proc_pid_stack.5 man/man5/proc_pid_stat.5
man/man5/proc_pid_statm.5 man/man5/proc_pid_status.5
man/man5/proc_pid_syscall.5 man/man5/proc_pid_task.5
man/man5/proc_pid_timers.5 man/man5/proc_pid_timerslack_ns.5
man/man5/proc_pid_uid_map.5 man/man5/proc_pid_wchan.5
man/man5/proc_profile.5 man/man5/proc_scsi.5 man/man5/proc_slabinfo.5
man/man5/proc_stat.5 man/man5/proc_swaps.5 man/man5/proc_sys.5
man/man5/proc_sys_abi.5 man/man5/proc_sys_debug.5
man/man5/proc_sys_dev.5 man/man5/proc_sys_fs.5
man/man5/proc_sys_kernel.5 man/man5/proc_sys_net.5
man/man5/proc_sys_proc.5 man/man5/proc_sys_sunrpc.5
man/man5/proc_sys_user.5 man/man5/proc_sys_vm.5
man/man5/proc_sysrq-trigger.5 man/man5/proc_sysvipc.5
man/man5/proc_tid_children.5 man/man5/proc_timer_list.5
man/man5/proc_timer_stats.5 man/man5/proc_tty.5
man/man5/proc_uptime.5 man/man5/proc_version.5 man/man5/proc_vmstat.5
man/man5/proc_zoneinfo.5
Copyright: 1994-1995, Daniel Quinlan <Daniel.Quinlan@linux.org>
2002-2017, Michael Kerrisk <mtk.manpages@gmail.com>
License: GPL-3
Files: man/man2/getcpu.2 man/man2/sendfile.2 man/man3/cmsg.3
man/man3/rtnetlink.3 man/man7/arp.7 man/man7/fifo.7 man/man7/icmp.7
man/man7/ip.7 man/man7/ipv6.7 man/man7/netdevice.7 man/man7/packet.7
man/man7/raw.7 man/man7/rtnetlink.7 man/man7/socket.7 man/man7/tcp.7
man/man7/udp.7 man/man7/unix.7 man/man7/x25.7
Copyright: 1998, Heiner Eisen
1998, Pawel Krawczyk
1999, Andi Kleen <andi@firstfloor.org>
1999, Claus Fischer
1999, Matthew Wilcox <willy@bofh.ai>
2000, Andi Kleen <andi@firstfloor.org>
2006, Andi Kleen <ak@muc.de>
2008, Michael Kerrisk <mtk.manpages@gmail.com>
2008-2014, Michael Kerrisk <mtk.manpages@gmail.com>
License: Linux-man-pages-1-para
Files: man/man1/diffman-git.1 man/man1/grepc.1 man/man1/grepc_c.1
man/man1/intro.1 man/man1/locale.1 man/man1/mansect.1
man/man1/mansectf.1 man/man1/pdfman.1 man/man1/pldd.1
man/man1/sortman.1 man/man1/sprof.1 man/man2/_exit.2
man/man2/access.2 man/man2/alarm.2 man/man2/alloc_hugepages.2
man/man2/arch_prctl.2 man/man2/bpf.2 man/man2/cachestat.2
man/man2/chdir.2 man/man2/chmod.2 man/man2/chown.2 man/man2/chroot.2
man/man2/clock_getres.2 man/man2/clock_nanosleep.2 man/man2/close.2
man/man2/close_range.2 man/man2/copy_file_range.2
man/man2/delete_module.2 man/man2/dup.2 man/man2/execve.2
man/man2/execveat.2 man/man2/exit_group.2 man/man2/fanotify_init.2
man/man2/fanotify_mark.2 man/man2/fcntl.2 man/man2/fcntl_locking.2
man/man2/flock.2 man/man2/fork.2 man/man2/fsconfig.2
man/man2/fsmount.2 man/man2/fsopen.2 man/man2/fspick.2
man/man2/fsync.2 man/man2/futimesat.2 man/man2/get_robust_list.2
man/man2/getdents.2 man/man2/getdomainname.2 man/man2/getgid.2
man/man2/getgroups.2 man/man2/gethostname.2 man/man2/getpagesize.2
man/man2/getpid.2 man/man2/getrandom.2 man/man2/getresuid.2
man/man2/getrlimit.2 man/man2/getrusage.2 man/man2/gettid.2
man/man2/gettimeofday.2 man/man2/getuid.2 man/man2/getunwind.2
man/man2/idle.2 man/man2/init_module.2 man/man2/intro.2
man/man2/ioctl_eventpoll.2 man/man2/ioctl_fat.2 man/man2/ioctl_fs.2
man/man2/ioctl_nsfs.2 man/man2/ioctl_pipe.2
man/man2/ioctl_userfaultfd.2 man/man2/iopl.2 man/man2/kcmp.2
man/man2/kexec_load.2 man/man2/keyctl.2 man/man2/kill.2
man/man2/landlock_add_rule.2 man/man2/landlock_create_ruleset.2
man/man2/landlock_restrict_self.2 man/man2/link.2
man/man2/listmount.2 man/man2/llseek.2 man/man2/lookup_dcookie.2
man/man2/madvise.2 man/man2/membarrier.2 man/man2/mincore.2
man/man2/mmap.2 man/man2/mmap2.2 man/man2/mount.2
man/man2/mount_setattr.2 man/man2/move_mount.2 man/man2/move_pages.2
man/man2/mprotect.2 man/man2/mq_getsetattr.2 man/man2/msgctl.2
man/man2/msgget.2 man/man2/msgop.2 man/man2/msync.2 man/man2/nice.2
man/man2/open.2 man/man2/open_by_handle_at.2 man/man2/open_tree.2
man/man2/openat2.2 man/man2/pause.2 man/man2/perfmonctl.2
man/man2/personality.2 man/man2/pidfd_getfd.2 man/man2/pidfd_open.2
man/man2/pidfd_send_signal.2 man/man2/pipe.2 man/man2/pivot_root.2
man/man2/pkey_alloc.2 man/man2/poll.2 man/man2/posix_fadvise.2
man/man2/prctl.2 man/man2/pread.2 man/man2/process_madvise.2
man/man2/process_vm_readv.2 man/man2/quotactl.2 man/man2/read.2
man/man2/readahead.2 man/man2/readdir.2 man/man2/readv.2
man/man2/reboot.2 man/man2/recvmmsg.2 man/man2/remap_file_pages.2
man/man2/rename.2 man/man2/restart_syscall.2 man/man2/rmdir.2
man/man2/rt_sigqueueinfo.2 man/man2/s390_guarded_storage.2
man/man2/sched_setattr.2 man/man2/sched_setscheduler.2
man/man2/seccomp.2 man/man2/seccomp_unotify.2 man/man2/select.2
man/man2/select_tut.2 man/man2/semctl.2 man/man2/semget.2
man/man2/semop.2 man/man2/sendmmsg.2 man/man2/set_tid_address.2
man/man2/seteuid.2 man/man2/setfsgid.2 man/man2/setfsuid.2
man/man2/setgid.2 man/man2/setresuid.2 man/man2/setuid.2
man/man2/setup.2 man/man2/sgetmask.2 man/man2/shmctl.2
man/man2/shmget.2 man/man2/shmop.2 man/man2/sigaction.2
man/man2/sigaltstack.2 man/man2/signal.2 man/man2/sigpending.2
man/man2/sigprocmask.2 man/man2/sigreturn.2 man/man2/sigsuspend.2
man/man2/sigwaitinfo.2 man/man2/splice.2 man/man2/stat.2
man/man2/statfs.2 man/man2/statmount.2 man/man2/statx.2
man/man2/stime.2 man/man2/subpage_prot.2 man/man2/swapon.2
man/man2/symlink.2 man/man2/sync.2 man/man2/sync_file_range.2
man/man2/syscalls.2 man/man2/sysctl.2 man/man2/sysfs.2
man/man2/sysinfo.2 man/man2/syslog.2 man/man2/tee.2 man/man2/time.2
man/man2/timer_create.2 man/man2/timer_delete.2
man/man2/timer_getoverrun.2 man/man2/timer_settime.2 man/man2/times.2
man/man2/tkill.2 man/man2/umask.2 man/man2/umount.2 man/man2/uname.2
man/man2/unlink.2 man/man2/uretprobe.2 man/man2/uselib.2
man/man2/userfaultfd.2 man/man2/ustat.2 man/man2/utime.2
man/man2/utimensat.2 man/man2/vfork.2 man/man2/vhangup.2
man/man2/vm86.2 man/man2/vmsplice.2 man/man2/wait.2 man/man2/wait4.2
man/man2/write.2 man/man2const/FAT_IOCTL_GET_VOLUME_ID.2const
man/man2const/FAT_IOCTL_SET_ATTRIBUTES.2const
man/man2const/FS_IOC_SETFLAGS.2const man/man2const/F_DUPFD.2const
man/man2const/F_GETDELEG.2const man/man2const/F_GETFD.2const
man/man2const/F_GETFL.2const man/man2const/F_GETLEASE.2const
man/man2const/F_GETPIPE_SZ.2const man/man2const/F_GETSIG.2const
man/man2const/F_GET_RW_HINT.2const man/man2const/F_GET_SEALS.2const
man/man2const/F_NOTIFY.2const man/man2const/IPPROTO_IP.2const
man/man2const/IPPROTO_IPV6.2const man/man2const/IPV6_ADDRFORM.2const
man/man2const/IPV6_ADD_MEMBERSHIP.2const
man/man2const/IPV6_MTU.2const man/man2const/IPV6_MTU_DISCOVER.2const
man/man2const/IPV6_MULTICAST_HOPS.2const
man/man2const/IPV6_MULTICAST_IF.2const
man/man2const/IPV6_MULTICAST_LOOP.2const
man/man2const/IPV6_RECVERR.2const
man/man2const/IPV6_RECVPKTINFO.2const
man/man2const/IPV6_ROUTER_ALERT.2const
man/man2const/IPV6_RTHDR.2const
man/man2const/IPV6_UNICAST_HOPS.2const
man/man2const/IPV6_V6ONLY.2const
man/man2const/IP_ADD_MEMBERSHIP.2const
man/man2const/IP_ADD_SOURCE_MEMBERSHIP.2const
man/man2const/IP_BIND_ADDRESS_NO_PORT.2const
man/man2const/IP_BLOCK_SOURCE.2const
man/man2const/IP_DROP_MEMBERSHIP.2const
man/man2const/IP_DROP_SOURCE_MEMBERSHIP.2const
man/man2const/IP_FREEBIND.2const man/man2const/IP_HDRINCL.2const
man/man2const/IP_LOCAL_PORT_RANGE.2const
man/man2const/IP_MSFILTER.2const man/man2const/IP_MTU.2const
man/man2const/IP_MTU_DISCOVER.2const
man/man2const/IP_MULTICAST_ALL.2const
man/man2const/IP_MULTICAST_IF.2const
man/man2const/IP_MULTICAST_LOOP.2const
man/man2const/IP_MULTICAST_TTL.2const
man/man2const/IP_NODEFRAG.2const man/man2const/IP_OPTIONS.2const
man/man2const/IP_PASSSEC.2const man/man2const/IP_PKTINFO.2const
man/man2const/IP_RECVERR.2const man/man2const/IP_RECVOPTS.2const
man/man2const/IP_RECVORIGDSTADDR.2const
man/man2const/IP_RECVTOS.2const man/man2const/IP_RECVTTL.2const
man/man2const/IP_RETOPTS.2const man/man2const/IP_ROUTER_ALERT.2const
man/man2const/IP_TOS.2const man/man2const/IP_TRANSPARENT.2const
man/man2const/IP_TTL.2const man/man2const/IP_UNBLOCK_SOURCE.2const
man/man2const/KEYCTL_ASSUME_AUTHORITY.2const
man/man2const/KEYCTL_CHOWN.2const man/man2const/KEYCTL_CLEAR.2const
man/man2const/KEYCTL_DESCRIBE.2const
man/man2const/KEYCTL_DH_COMPUTE.2const
man/man2const/KEYCTL_GET_KEYRING_ID.2const
man/man2const/KEYCTL_GET_PERSISTENT.2const
man/man2const/KEYCTL_GET_SECURITY.2const
man/man2const/KEYCTL_INSTANTIATE.2const
man/man2const/KEYCTL_INVALIDATE.2const
man/man2const/KEYCTL_JOIN_SESSION_KEYRING.2const
man/man2const/KEYCTL_LINK.2const man/man2const/KEYCTL_READ.2const
man/man2const/KEYCTL_RESTRICT_KEYRING.2const
man/man2const/KEYCTL_REVOKE.2const man/man2const/KEYCTL_SEARCH.2const
man/man2const/KEYCTL_SESSION_TO_PARENT.2const
man/man2const/KEYCTL_SETPERM.2const
man/man2const/KEYCTL_SET_REQKEY_KEYRING.2const
man/man2const/KEYCTL_SET_TIMEOUT.2const
man/man2const/KEYCTL_UNLINK.2const man/man2const/KEYCTL_UPDATE.2const
man/man2const/NS_GET_NSTYPE.2const
man/man2const/NS_GET_OWNER_UID.2const
man/man2const/NS_GET_USERNS.2const man/man2const/PAGEMAP_SCAN.2const
man/man2const/PR_CAPBSET_DROP.2const
man/man2const/PR_CAPBSET_READ.2const
man/man2const/PR_CAP_AMBIENT.2const
man/man2const/PR_CAP_AMBIENT_CLEAR_ALL.2const
man/man2const/PR_CAP_AMBIENT_IS_SET.2const
man/man2const/PR_CAP_AMBIENT_LOWER.2const
man/man2const/PR_CAP_AMBIENT_RAISE.2const
man/man2const/PR_FUTEX_HASH.2const
man/man2const/PR_FUTEX_HASH_GET_SLOTS.2const
man/man2const/PR_FUTEX_HASH_SET_SLOTS.2const
man/man2const/PR_GET_AUXV.2const
man/man2const/PR_GET_CHILD_SUBREAPER.2const
man/man2const/PR_GET_DUMPABLE.2const
man/man2const/PR_GET_ENDIAN.2const man/man2const/PR_GET_FPEMU.2const
man/man2const/PR_GET_FPEXC.2const man/man2const/PR_GET_FP_MODE.2const
man/man2const/PR_GET_IO_FLUSHER.2const
man/man2const/PR_GET_KEEPCAPS.2const man/man2const/PR_GET_MDWE.2const
man/man2const/PR_GET_NO_NEW_PRIVS.2const
man/man2const/PR_GET_PDEATHSIG.2const
man/man2const/PR_GET_SECCOMP.2const
man/man2const/PR_GET_SECUREBITS.2const
man/man2const/PR_GET_SPECULATION_CTRL.2const
man/man2const/PR_GET_TAGGED_ADDR_CTRL.2const
man/man2const/PR_GET_THP_DISABLE.2const
man/man2const/PR_GET_TID_ADDRESS.2const
man/man2const/PR_GET_TIMERSLACK.2const
man/man2const/PR_GET_TIMING.2const man/man2const/PR_GET_TSC.2const
man/man2const/PR_GET_UNALIGN.2const man/man2const/PR_MCE_KILL.2const
man/man2const/PR_MCE_KILL_CLEAR.2const
man/man2const/PR_MCE_KILL_GET.2const
man/man2const/PR_MCE_KILL_SET.2const
man/man2const/PR_MPX_ENABLE_MANAGEMENT.2const
man/man2const/PR_PAC_RESET_KEYS.2const
man/man2const/PR_RISCV_SET_ICACHE_FLUSH_CTX.2const
man/man2const/PR_SET_CHILD_SUBREAPER.2const
man/man2const/PR_SET_DUMPABLE.2const
man/man2const/PR_SET_ENDIAN.2const man/man2const/PR_SET_FPEMU.2const
man/man2const/PR_SET_FPEXC.2const man/man2const/PR_SET_FP_MODE.2const
man/man2const/PR_SET_IO_FLUSHER.2const
man/man2const/PR_SET_KEEPCAPS.2const man/man2const/PR_SET_MDWE.2const
man/man2const/PR_SET_MM.2const
man/man2const/PR_SET_MM_ARG_START.2const
man/man2const/PR_SET_MM_AUXV.2const
man/man2const/PR_SET_MM_BRK.2const
man/man2const/PR_SET_MM_EXE_FILE.2const
man/man2const/PR_SET_MM_MAP.2const
man/man2const/PR_SET_MM_START_BRK.2const
man/man2const/PR_SET_MM_START_CODE.2const
man/man2const/PR_SET_MM_START_DATA.2const
man/man2const/PR_SET_MM_START_STACK.2const
man/man2const/PR_SET_NAME.2const
man/man2const/PR_SET_NO_NEW_PRIVS.2const
man/man2const/PR_SET_PDEATHSIG.2const
man/man2const/PR_SET_PTRACER.2const
man/man2const/PR_SET_SECCOMP.2const
man/man2const/PR_SET_SECUREBITS.2const
man/man2const/PR_SET_SPECULATION_CTRL.2const
man/man2const/PR_SET_SYSCALL_USER_DISPATCH.2const
man/man2const/PR_SET_TAGGED_ADDR_CTRL.2const
man/man2const/PR_SET_THP_DISABLE.2const
man/man2const/PR_SET_TIMERSLACK.2const
man/man2const/PR_SET_TIMING.2const man/man2const/PR_SET_TSC.2const
man/man2const/PR_SET_UNALIGN.2const man/man2const/PR_SET_VMA.2const
man/man2const/PR_SVE_GET_VL.2const man/man2const/PR_SVE_SET_VL.2const
man/man2const/PR_TASK_PERF_EVENTS_DISABLE.2const
man/man2const/SO_PEERSEC.2const man/man2const/UFFDIO_API.2const
man/man2const/UFFDIO_CONTINUE.2const man/man2const/UFFDIO_COPY.2const
man/man2const/UFFDIO_MOVE.2const man/man2const/UFFDIO_POISON.2const
man/man2const/UFFDIO_REGISTER.2const
man/man2const/UFFDIO_UNREGISTER.2const
man/man2const/UFFDIO_WAKE.2const
man/man2const/UFFDIO_WRITEPROTECT.2const
man/man2const/UFFDIO_ZEROPAGE.2const
man/man2const/VFAT_IOCTL_READDIR_BOTH.2const
man/man2type/in_pktinfo.2type man/man2type/ip_mreq_source.2type
man/man2type/ip_mreqn.2type man/man2type/mount_attr.2type
man/man2type/open_how.2type man/man3/CPU_SET.3 man/man3/INFINITY.3
man/man3/MAX.3 man/man3/TIMEVAL_TO_TIMESPEC.3 man/man3/_Fork.3
man/man3/_Generic.3 man/man3/_Maxof.3 man/man3/__ppc_get_timebase.3
man/man3/__ppc_set_ppr_med.3 man/man3/__ppc_yield.3 man/man3/abort.3
man/man3/abs.3 man/man3/acos.3 man/man3/acosh.3 man/man3/adjtime.3
man/man3/aio_init.3 man/man3/aligned_alloc.3 man/man3/arc4random.3
man/man3/asin.3 man/man3/asinh.3 man/man3/asprintf.3
man/man3/assert.3 man/man3/assert_perror.3 man/man3/atan.3
man/man3/atan2.3 man/man3/atanh.3 man/man3/atexit.3 man/man3/atof.3
man/man3/atoi.3 man/man3/basename.3 man/man3/bcmp.3 man/man3/bcopy.3
man/man3/bindresvport.3 man/man3/bsd_signal.3 man/man3/bsearch.3
man/man3/bstring.3 man/man3/bswap.3 man/man3/byteorder.3
man/man3/bzero.3 man/man3/canonicalize_file_name.3 man/man3/catgets.3
man/man3/catopen.3 man/man3/cbrt.3 man/man3/ceil.3
man/man3/clearenv.3 man/man3/clock.3 man/man3/clock_getcpuclockid.3
man/man3/closedir.3 man/man3/confstr.3 man/man3/copysign.3
man/man3/cos.3 man/man3/cosh.3 man/man3/countof.3 man/man3/ctermid.3
man/man3/ctime.3 man/man3/difftime.3 man/man3/dirfd.3 man/man3/div.3
man/man3/dl_iterate_phdr.3 man/man3/dladdr.3 man/man3/dlinfo.3
man/man3/drand48.3 man/man3/drand48_r.3 man/man3/duplocale.3
man/man3/dysize.3 man/man3/ecvt.3 man/man3/ecvt_r.3 man/man3/end.3
man/man3/endian.3 man/man3/erf.3 man/man3/erfc.3
man/man3/ether_aton.3 man/man3/euidaccess.3 man/man3/exit.3
man/man3/exp.3 man/man3/exp10.3 man/man3/exp2.3 man/man3/expm1.3
man/man3/fabs.3 man/man3/fcloseall.3 man/man3/fexecve.3
man/man3/ffs.3 man/man3/fgetc.3 man/man3/fgetgrent.3
man/man3/fgetpwent.3 man/man3/finite.3 man/man3/flockfile.3
man/man3/floor.3 man/man3/fmod.3 man/man3/fnmatch.3
man/man3/fopencookie.3 man/man3/fpathconf.3 man/man3/fpurge.3
man/man3/frexp.3 man/man3/fseeko.3 man/man3/ftok.3 man/man3/futimes.3
man/man3/gcvt.3 man/man3/get_nprocs.3 man/man3/get_phys_pages.3
man/man3/getaddrinfo.3 man/man3/getaddrinfo_a.3 man/man3/getauxval.3
man/man3/getc.3 man/man3/getcontext.3 man/man3/getcwd.3
man/man3/getdate.3 man/man3/getdirentries.3 man/man3/getdtablesize.3
man/man3/getentropy.3 man/man3/getenv.3 man/man3/getfsent.3
man/man3/getgrent.3 man/man3/getgrnam.3 man/man3/getgrouplist.3
man/man3/gethostbyname.3 man/man3/gethostid.3 man/man3/getifaddrs.3
man/man3/getipnodebyname.3 man/man3/getline.3 man/man3/getlogin.3
man/man3/getmntent.3 man/man3/getnetent.3 man/man3/getnetent_r.3
man/man3/getopt.3 man/man3/getopt_long.3 man/man3/getopt_long_only.3
man/man3/getprotoent.3 man/man3/getprotoent_r.3 man/man3/getpw.3
man/man3/getpwent.3 man/man3/getpwnam.3 man/man3/getrpcent_r.3
man/man3/gets.3 man/man3/getservent.3 man/man3/getservent_r.3
man/man3/getusershell.3 man/man3/getutmp.3 man/man3/getw.3
man/man3/glob.3 man/man3/gnu_get_libc_version.3
man/man3/group_member.3 man/man3/gsignal.3 man/man3/hypot.3
man/man3/if_nameindex.3 man/man3/if_nametoindex.3 man/man3/ilogb.3
man/man3/index.3 man/man3/inet.3 man/man3/inet_net_pton.3
man/man3/inet_ntop.3 man/man3/inet_pton.3 man/man3/initgroups.3
man/man3/insque.3 man/man3/intro.3 man/man3/isalpha.3
man/man3/isatty.3 man/man3/isfdtype.3 man/man3/j0.3 man/man3/ldexp.3
man/man3/localeconv.3 man/man3/log.3 man/man3/log10.3
man/man3/log1p.3 man/man3/log2.3 man/man3/logb.3 man/man3/lrint.3
man/man3/lround.3 man/man3/lsearch.3 man/man3/lseek64.3
man/man3/makecontext.3 man/man3/makedev.3 man/man3/mallinfo.3
man/man3/malloc.3 man/man3/malloc_get_state.3 man/man3/malloc_info.3
man/man3/malloc_stats.3 man/man3/malloc_trim.3
man/man3/malloc_usable_size.3 man/man3/mallopt.3 man/man3/matherr.3
man/man3/mcheck.3 man/man3/memalign.3 man/man3/memccpy.3
man/man3/memchr.3 man/man3/memcmp.3 man/man3/memcpy.3
man/man3/memeq.3 man/man3/memfrob.3 man/man3/memmem.3
man/man3/memmove.3 man/man3/memset.3 man/man3/mkdtemp.3
man/man3/mkfifo.3 man/man3/mkstemp.3 man/man3/mktemp.3
man/man3/modf.3 man/man3/mq_close.3 man/man3/mq_getattr.3
man/man3/mq_notify.3 man/man3/mq_open.3 man/man3/mq_receive.3
man/man3/mq_send.3 man/man3/mq_unlink.3 man/man3/mtrace.3
man/man3/newlocale.3 man/man3/nextup.3 man/man3/ntp_gettime.3
man/man3/on_exit.3 man/man3/opendir.3 man/man3/posix_fallocate.3
man/man3/posix_memalign.3 man/man3/posix_openpt.3
man/man3/posix_spawn.3 man/man3/pow.3 man/man3/pow10.3
man/man3/powerof2.3 man/man3/profil.3 man/man3/psignal.3
man/man3/pthread_atfork.3 man/man3/pthread_attr_init.3
man/man3/pthread_attr_setaffinity_np.3
man/man3/pthread_attr_setdetachstate.3
man/man3/pthread_attr_setguardsize.3
man/man3/pthread_attr_setinheritsched.3
man/man3/pthread_attr_setschedparam.3
man/man3/pthread_attr_setschedpolicy.3
man/man3/pthread_attr_setscope.3
man/man3/pthread_attr_setsigmask_np.3
man/man3/pthread_attr_setstack.3 man/man3/pthread_attr_setstackaddr.3
man/man3/pthread_attr_setstacksize.3 man/man3/pthread_cancel.3
man/man3/pthread_cleanup_push.3
man/man3/pthread_cleanup_push_defer_np.3 man/man3/pthread_cond_init.3
man/man3/pthread_condattr_init.3 man/man3/pthread_create.3
man/man3/pthread_detach.3 man/man3/pthread_equal.3
man/man3/pthread_exit.3 man/man3/pthread_getattr_default_np.3
man/man3/pthread_getattr_np.3 man/man3/pthread_getcpuclockid.3
man/man3/pthread_join.3 man/man3/pthread_key_create.3
man/man3/pthread_kill.3 man/man3/pthread_kill_other_threads_np.3
man/man3/pthread_mutex_consistent.3 man/man3/pthread_mutex_init.3
man/man3/pthread_mutexattr_getpshared.3
man/man3/pthread_mutexattr_init.3
man/man3/pthread_mutexattr_setkind_np.3
man/man3/pthread_mutexattr_setrobust.3 man/man3/pthread_once.3
man/man3/pthread_rwlockattr_setkind_np.3 man/man3/pthread_self.3
man/man3/pthread_setaffinity_np.3 man/man3/pthread_setcancelstate.3
man/man3/pthread_setconcurrency.3 man/man3/pthread_setname_np.3
man/man3/pthread_setschedparam.3 man/man3/pthread_setschedprio.3
man/man3/pthread_sigmask.3 man/man3/pthread_sigqueue.3
man/man3/pthread_spin_init.3 man/man3/pthread_spin_lock.3
man/man3/pthread_testcancel.3 man/man3/pthread_tryjoin_np.3
man/man3/pthread_yield.3 man/man3/putenv.3 man/man3/putpwent.3
man/man3/puts.3 man/man3/pvalloc.3 man/man3/qecvt.3 man/man3/qsort.3
man/man3/raise.3 man/man3/rand.3 man/man3/random.3
man/man3/random_r.3 man/man3/re_comp.3 man/man3/readdir.3
man/man3/readdir_r.3 man/man3/realpath.3 man/man3/regex.3
man/man3/remainder.3 man/man3/remove.3 man/man3/resolver.3
man/man3/rewinddir.3 man/man3/rint.3 man/man3/round.3
man/man3/roundup.3 man/man3/scalb.3 man/man3/scalbln.3
man/man3/scanf.3 man/man3/sched_getcpu.3 man/man3/seekdir.3
man/man3/sem_close.3 man/man3/sem_destroy.3 man/man3/sem_getvalue.3
man/man3/sem_init.3 man/man3/sem_open.3 man/man3/sem_post.3
man/man3/sem_unlink.3 man/man3/sem_wait.3 man/man3/setenv.3
man/man3/setlocale.3 man/man3/setlogmask.3 man/man3/shm_open.3
man/man3/siginterrupt.3 man/man3/sigpause.3 man/man3/sigqueue.3
man/man3/sigset.3 man/man3/sigsetops.3 man/man3/sigvec.3
man/man3/sigwait.3 man/man3/sin.3 man/man3/sinh.3 man/man3/sleep.3
man/man3/sockatmark.3 man/man3/sqrt.3 man/man3/static_assert.3
man/man3/statvfs.3 man/man3/stdio_ext.3 man/man3/stpncpy.3
man/man3/strcasecmp.3 man/man3/strchr.3 man/man3/strcmp.3
man/man3/strcoll.3 man/man3/strcpy.3 man/man3/strdup.3
man/man3/streq.3 man/man3/strerror.3 man/man3/strfromd.3
man/man3/strfry.3 man/man3/strftime.3 man/man3/string.3
man/man3/strlen.3 man/man3/strncat.3 man/man3/strpbrk.3
man/man3/strptime.3 man/man3/strsep.3 man/man3/strsignal.3
man/man3/strspn.3 man/man3/strstr.3 man/man3/strtok.3
man/man3/strtol.3 man/man3/strtoul.3 man/man3/strverscmp.3
man/man3/strxfrm.3 man/man3/swab.3 man/man3/sysconf.3
man/man3/syslog.3 man/man3/system.3 man/man3/sysv_signal.3
man/man3/tan.3 man/man3/tanh.3 man/man3/tcgetpgrp.3
man/man3/tcgetsid.3 man/man3/telldir.3 man/man3/tempnam.3
man/man3/timegm.3 man/man3/timeradd.3 man/man3/tmpfile.3
man/man3/tmpnam.3 man/man3/toascii.3 man/man3/toupper.3
man/man3/trunc.3 man/man3/tsearch.3 man/man3/ttyslot.3
man/man3/tzset.3 man/man3/ulimit.3 man/man3/undocumented.3
man/man3/unlocked_stdio.3 man/man3/uselocale.3 man/man3/usleep.3
man/man3/valloc.3 man/man3/y0.3 man/man3attr/gnu::aligned.3attr
man/man3attr/gnu::format.3attr man/man3attr/gnu::warning.3attr
man/man3attr/intro.3attr man/man3const/EOF.3const
man/man3const/EXIT_SUCCESS.3const man/man3const/NULL.3const
man/man3head/printf.h.3head man/man3type/FILE.3type
man/man3type/aiocb.3type man/man3type/blkcnt_t.3type
man/man3type/blksize_t.3type man/man3type/cc_t.3type
man/man3type/clock_t.3type man/man3type/clockid_t.3type
man/man3type/dev_t.3type man/man3type/div_t.3type
man/man3type/double_t.3type man/man3type/epoll_event.3type
man/man3type/fenv_t.3type man/man3type/id_t.3type
man/man3type/intN_t.3type man/man3type/intmax_t.3type
man/man3type/intptr_t.3type man/man3type/iovec.3type
man/man3type/itimerspec.3type man/man3type/lconv.3type
man/man3type/locale_t.3type man/man3type/mode_t.3type
man/man3type/off_t.3type man/man3type/ptrdiff_t.3type
man/man3type/sigevent.3type man/man3type/size_t.3type
man/man3type/sockaddr.3type man/man3type/sockaddr_in.3type
man/man3type/sockaddr_in6.3type man/man3type/sockaddr_un.3type
man/man3type/stat.3type man/man3type/time_t.3type
man/man3type/timer_t.3type man/man3type/timespec.3type
man/man3type/timeval.3type man/man3type/tm.3type
man/man3type/va_list.3type man/man3type/void.3type
man/man3type/wchar_t.3type man/man3type/wint_t.3type man/man4/cpuid.4
man/man4/full.4 man/man4/fuse.4 man/man4/initrd.4 man/man4/mouse.4
man/man4/msr.4 man/man4/sd.4 man/man4/st.4 man/man5/acct.5
man/man5/core.5 man/man5/erofs.5 man/man5/proc_sys_net_ipv4.5
man/man5/services.5 man/man5/slabinfo.5 man/man5/sysfs.5
man/man5/tmpfs.5 man/man7/address_families.7 man/man7/aio.7
man/man7/capabilities.7 man/man7/cgroup_namespaces.7
man/man7/cgroups.7 man/man7/credentials.7 man/man7/ddp.7
man/man7/fanotify.7 man/man7/feature_test_macros.7 man/man7/hier.7
man/man7/inode.7 man/man7/inotify.7 man/man7/ipc_namespaces.7
man/man7/landlock.7 man/man7/libc.7 man/man7/locale.7
man/man7/man-pages.7 man/man7/math_error.7 man/man7/mctp.7
man/man7/mount_namespaces.7 man/man7/mq_overview.7
man/man7/namespaces.7 man/man7/network_namespaces.7 man/man7/nptl.7
man/man7/numa.7 man/man7/path_resolution.7 man/man7/pathname.7
man/man7/pid_namespaces.7 man/man7/pipe.7 man/man7/pkeys.7
man/man7/pthreads.7 man/man7/pty.7 man/man7/random.7
man/man7/rtld-audit.7 man/man7/sem_overview.7 man/man7/shm_overview.7
man/man7/signal-safety.7 man/man7/signal.7 man/man7/suffixes.7
man/man7/system_data_types.7 man/man7/sysvipc.7 man/man7/termio.7
man/man7/time.7 man/man7/time_namespaces.7 man/man7/udplite.7
man/man7/units.7 man/man7/uri.7 man/man7/user_namespaces.7
man/man7/uts_namespaces.7 man/man7/vsock.7 man/man8/sln.8
Copyright: 1991-1992, Free Software Foundation
1992, Drew Eckhardt <drew@cs.colorado.edu>
1992, Ian Jackson <iwj10@cus.cam.ac.uk>
1992, Rickard E. Faith <faith@cs.unc.edu>
1992-1999, David A. Wheeler <dwheeler@dwheeler.com>
1992-1999, Rickard E. Faith <faith@cs.unc.edu>
1993, Dan Miner <dminer@nyx.cs.du.edu>
1993, David Metcalfe <david@prism.demon.co.uk>
1993, Giorgio Ciucci <giorgio@crcc.it>
1993, Ian Jackson <iwj10@cus.cam.ac.uk>
1993, Luigi P. Bai <lpb@softint.com>
1993, Mitchum DSouza <m.dsouza@mrc-apu.cam.ac.uk>
1993, Rickard E. Faith <faith@cs.unc.edu>
1993, Thomas Koenig <ig25@rz.uni-karlsruhe.de>
1993-1995, Ian Jackson <iwj10@cus.cam.ac.uk>
1994, Andries E. Brouwer <aeb@cwi.nl>
1994, Graeme W. Wilford <G.Wilford@ee.surrey.ac.uk>
1994, Mike Battersby <mib@deakin.edu.au>
1994-1995, Mike Battersby <mib@deakin.edu.au>
1995, Andries E. Brouwer <aeb@cwi.nl>
1995, Graeme W. Wilford <G.Wilford@ee.surrey.ac.uk>
1995, James R. Van Zandt <jrv@vanzandt.mv.com>
1995, Martin Schulze <joey@debian.org>
1995, Michael Shields <shields@tembel.org>
1995, Nicolai Langfeldt <janl@ifi.uio.no>
1995, Robert K. Nichols <Robert.K.Nichols@att.com>
1995, Thomas K. Dyas <tdyas@eden.rutgers.edu>
1995-2005, Kai Mäkisara <Kai.Makisara@kolumbus.fi>
1996, Andries E. Brouwer <aeb@cwi.nl>
1996, Austin Donnelly <and1000@debian.org>
1996, Free Software Foundation, Inc.
1996, Peter Memishian <meem@gnu.ai.mit.edu>
1997, Andries E. Brouwer <aeb@cwi.nl>
1997, John S. Kallal <kallal@voicenet.com>
1998, Alan Cox <A.Cox@swansea.ac.uk>
1998, Andries E. Brouwer <aeb@cwi.nl>
1998, Jamie Lokier <jamie@imbolc.ucc.ie>
1998, The Internet Society.
1998-1999, Andries E. Brouwer <aeb@cwi.nl>
1999, Andries E. Brouwer <aeb@cwi.nl>
1999, Bruno Haible <bruno@clisp.org>
1999, Joseph Samuel Myers <jsm28@cam.ac.uk>
1999-2000, David A. Wheeler <dwheeler@dwheeler.com>
2000, Andries E. Brouwer <aeb@cwi.nl>
2000, Michael Kerrisk <mtk.manpages@gmail.com>
2001, Andreas Dilger <adilger@turbolinux.com>
2001, Andries Brouwer <aeb@cwi.nl>
2001, Andries E. Brouwer <aeb@cwi.nl>
2001, Bert Hubert <ahu@ds9a.nl>
2001, David Gómez <davidge@jazzfree.com>
2001, John Levon <moz@compsoc.man.ac.uk>
2001, Paul Sheer
2001, Walter Harms <walter.harms@informatik.uni-oldenburg.de>
2001-2017, Michael Kerrisk <mtk.manpages@gmail.com>
2002, Andries E. Brouwer <aeb@cwi.nl>
2002, Ian Redfern <redferni@logica.com>
2002, Michael Kerrisk <mtk.manpages@gmail.com>
2002-2005, Michael Kerrisk <mtk.manpages@gmail.com>
2002-2010, Michael Kerrisk <mtk.manpages@gmail.com>
2002-2011, Michael Kerrisk <mtk.manpages@gmail.com>
2002-2012, Michael Kerrisk <mtk.manpages@gmail.com>
2002-2015, Michael Kerrisk <mtk.manpages@gmail.com>
2002-2016, Michael Kerrisk <mtk.manpages@gmail.com>
2002-2020, Michael Kerrisk <mtk.manpages@gmail.com>
2003, Abhijit Menon-Sen <ams@wiw.org>
2003, Andi Kleen <andi@firstfloor.org>
2003, Andries E. Brouwer <aeb@cwi.nl>
2003, John Levon <levon@movementarian.org>
2003, Michael Kerrisk <mtk.manpages@gmail.com>
2003, Nick Clifford <zaf@nrc.co.nz>
2003, Walter Harms <walter.harms@informatik.uni-oldenburg.de>
2003-2004, Andi Kleen <andi@firstfloor.org>
2003-2004, SuSE GmbH
2003-2017, Michael Kerrisk <mtk.manpages@gmail.com>
2004, Andries E. Brouwer <aeb@cwi.nl>
2004, Michael Kerrisk <mtk.manpages@gmail.com>
2004-2005, Michael Kerrisk <mtk.manpages@gmail.com>
2004-2007, Michael Kerrisk <mtk.manpages@gmail.com>
2004-2014, Michael Kerrisk <mtk.manpages@gmail.com>
2005, Michael Kerrisk <mtk.manpages@gmail.com>
2005, Silicon Graphics, Inc.
2005-2008, Michael Kerrisk <mtk.manpages@gmail.com>
2005-2013, Michael Kerrisk <mtk.manpages@gmail.com>
2005-2014, Michael Kerrisk <mtk.manpages@gmail.com>
2005-2015, Michael Kerrisk <mtk.manpages@gmail.com>
2005-2020, Michael Kerrisk <mtk.manpages@gmail.com>
2006, Jens Axboe <axboe@kernel.dk>
2006, Michael Kerrisk <mtk.manpages@gmail.com>
2006, Michael Kerrisk <tk.manpages@gmail.com>
2006, Red Hat, Inc
2006, Red Hat, Inc.
2006, Silicon Graphics, Inc.
2006, Ulrich Drepper <drepper@redhat.com>
2006-2007, Michael Kerrisk <mtk.manpages@gmail.com>
2006-2008, Michael Kerrisk <mtk.manpages@gmail.com>
2006-2014, Michael Kerrisk <mtk.manpages@gmail.com>
2006-2014, Michael Kerrisk <tmk.manpages@gmail.com>
2006-2015, Michael Kerrisk <mtk.manpages@gmail.com>
2006-2017, Michael Kerrisk <mtk.manpages@gmail.com>
2006-2019, Michael Kerrisk <mtk.manpages@gmail.com>
2006-2020, Michael Kerrisk <mtk.manpages@gmail.com>
2007, Michael Kerrisk <mtk.manpages@gmail.com>
2007-2008, Michael Kerrisk <mtk.manpages@gmail.com>
2007-2010, Michael Kerrisk <mtk.manpages@gmail.com>
2007-2012, Michael Kerrisk <mtk.manpages@gmail.com>
2007-2018, Michael Kerrisk <mtk.manpages@gmail.com>
2007-2020, Michael Kerrisk <mtk.manpages@gmail.com>
2008, Erik Bosman <ejbosman@cs.vu.nl>
2008, George Spelvin <linux@horizon.com>
2008, Gerrit Renker <gerrit@erg.abdn.ac.uk>
2008, Matt Mackall <mpm@selenic.com>
2008, Michael Kerrisk <mtk.manpages@gmail.com>
2008, Petr Baudis <pasky@ucw.cz>
2008-2014, Michael Kerrisk <mtk.manpages@gmail.com>
2008-2015, Michael Kerrisk <mtk.manpages@gmail.com>
2008-2016, Michael Kerrisk <mtk.manpages@gmail.com>
2008-2017 Michael Kerrisk <mtk.manpages@gmail.com>
2009, Intel Corp.
2009, Michael Kerrisk <mtk.manpages@gmail.com>
2009, Petr Baudis <pasky@ucw.cz>
2009-2015, Michael Kerrisk <mtk.manpages@gmail.com>
2010, Andi Kleen <andi@firstfloor.org>
2010, Intel Corp.
2010, Jan Kara <jack@suse.cz>
2010, Michael Kerrisk <mtk.manpages@gmail.com>
2010, Novell, Inc.
2010-2015, Michael Kerrisk <mtk.manpages@gmail.com>
2010-2017, Michael Kerrisk <mtk.manpages@gmail.com>
2011, Andi Kleen <andi@firstfloor.org>
2011, Christopher Yeoh <cyeoh@au1.ibm.com>
2011, Michael Kerrisk <mtk.manpages@gmail.com>
2012, Chandan Apsangi <chandan.jc@gmail.com>
2012, Cyrill Gorcunov <gorcunov@gmail.com>
2012, Cyrill Gorcunov <gorcunov@openvz.org>
2012, Eric W. Biederman <ebiederm@xmission.com>
2012, International Business Machines Corp.
2012, Michael Kerrisk <mtk.manpages@gmail.com>
2012, Mike Frysinger <vapier@gentoo.org>
2012, Petr Benas
2012, Will Drewry <wad@chromium.org>
2012, YOSHIFUJI Hideaki/吉藤英明 <hideaki.yoshifuji@miraclelinux.com>
2012-2014, Eric W. Biederman <ebiederm@xmission.com>
2012-2014, Michael Kerrisk <mtk.manpages@gmail.com>
2012-2015, Michael Kerrisk <mtk.manpages@gmail.com>
2012-2016, Michael Kerrisk <mtk.manpages@gmail.com>
2013, Michael Kerrisk <mtk.manpages@gmail.com>
2013-2014, Michael Kerrisk <mtk.manpages@gmail.com>
2013-2015, Michael Kerrisk <mtk.manpages@gmail.com>
2013-2017, Michael Kerrisk <mtk.manpages@gmail.com>
2013-2019, Michael Kerrisk <mtk.manpages@gmail.com>
2014, Dave Hansen <dave.hansen@linux.intel.com>
2014, David Herrmann <dh.herrmann@gmail.com>
2014, Google, Inc.
2014, Intel Corp.
2014, Jeff Layton <jlayton@kernel.org>
2014, Michael Kerrisk <mtk.manpages@gmail.com>
2014, Peter Zijlstra <peterz@infradead.org>
2014, Theodore Ts'o <tytso@mit.edu>
2014, Vivek Goyal <vgoyal@redhat.com>
2014-2015, Michael Kerrisk <mtk.manpages@gmail.com>
2015, Alexei Starovoitov <ast@kernel.org>
2015, Anna Schumaker <Anna.Schumaker@Netapp.com>
2015, International Business Machines Corp.
2015, Michael Kerrisk <mtk.manpages@gmail.com>
2015, William Woodruff <william@tuffbizz.com>
2015-2016, International Business Machines Corp.
2016, Eugene Syromyatnikov <evgsyr@gmail.com>
2016, Florian Weimer <fweimer@redhat.com>
2016, Intel Corp.
2016, International Business Machines Corp.
2016, Julia Computing, Inc.
2016, Laurent Georget <laurent.georget@supelec.fr>
2016, Michael Kerrisk <mtk.manpages@gmail.com>
2016, Nikos Mavrogiannopoulos <nmav@redhat.com>
2016-2017, Michael Kerrisk <mtk.manpages@gmail.com>
2016-2021, Michael Kerrisk <mtk.manpages@gmail.com>
2017, David Howells <dhowells@redhat.com>
2017, Jens Axboe <axboe@kernel.dk>
2017, Michael Kerrisk <mtk.manpages@gmail.com>
2017, Tyler Hicks <tyhicks@canonical.com>
2017, Yubin Ruan <ablacktshirt@gmail.com>
2017-2020, Mickaël Salaün <mic@digikod.net>
2018, Eugene Syromyatnikov <evgsyr@gmail.com>
2018, Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2018, Michael Kerrisk <mtk.manpages@gmail.com>
2019, Aleksa Sarai <cyphar@cyphar.com>
2019, Michael Kerrisk <mtk.manpages@gmail.com>
2019-2020, ANSSI
2020, Michael Kerrisk <mtk.manpages@gmail.com>
2020, Mike Christie <mchristi@redhat.com>
2020, Stephen Kitt <steve@sk2.org>
2021, Christian Brauner <brauner@kernel.org>
2021, Colin Cross <ccross@google.com>
2021, Gabriel Krisman Bertazi <krisman@collabora.com>
2021, Michael Kerrisk <mtk.manpages@gmail.com>
2021, Microsoft Corp.
2021, Minchan Kim <minchan@kernel.org>
2021, Suren Baghdasaryan <surenb@google.com>
2021-2025, Jeremy Kerr <jk@codeconstruct.com.au>
2022, Cyril Hrubis <chrubi@suse.cz>
2022, Thomas Voss <mail@thomasvoss.com>
2023, Collabora
2023, Nick Gregory <nick@nickgregory.me>
2024, Jiri Olsa <jolsa@kernel.org>
2024, Joe Damato <jdamato@fastly.com>
2024, Rivos, Inc.
2025, Jason Yundt <jason@jasonyundt.email>
Drew Eckhardt <drew@cs.colorado.edu>
License: Linux-man-pages-copyleft
Files: man/man2/migrate_pages.2
Copyright: 2006, Silicon Graphics, Inc.
2009, Intel Corp.
License: Linux-man-pages-copyleft-2-para
Files: man/man2/get_mempolicy.2 man/man2/mbind.2 man/man2/set_mempolicy.2
Copyright: 2003-2004, Andi Kleen <andi@firstfloor.org>
2003-2004, SuSE GmbH
2003-2004, SuSE Labs
2007, Hewlett Packard
2007, Hewlett-Packard Development Company, L.P.
2007, Lee Schermerhorn <Lee.Schermerhorn@hp.com>
License: Linux-man-pages-copyleft-var
License: 0BSD
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
License: BSD-2-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
.
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
License: BSD-4-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. All advertising materials mentioning features or use of this software
must display the following acknowledgement:
This product includes software developed by the University of
California, Berkeley and its contributors.
4. Neither the name of the University nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
License: Expat
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
.
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
License: GPL-1+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
License: GPL-2
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
.
On Debian systems, the full text of the GNU General Public
License version 2 can be found in the file
`/usr/share/common-licenses/GPL-2'.
License: GPL-2+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
.
On Debian systems, the full text of the GNU General Public
License version 2 can be found in the file
`/usr/share/common-licenses/GPL-2'.
License: GPL-3
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU General Public License
can be found in /usr/share/common-licenses/GPL-3 file.
License: Linux-man-pages-1-para
Permission is granted to distribute possibly modified copies of this page
provided the header is included verbatim, and in case of nontrivial
modification author and date of the modification is added to the header.
License: Linux-man-pages-copyleft
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.
License: Linux-man-pages-copyleft-2-para
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.
License: Linux-man-pages-copyleft-var
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.
.
Formatted or processed versions of this manual, if unaccompanied by the
source, must acknowledge the copyright and authors of this work.
|