summaryrefslogtreecommitdiffstats
path: root/lib/libc/sys
Commit message (Collapse)AuthorAgeFilesLines
* Added cross references to mincore(2) and minherit(2).alex1998-01-201-0/+3
| | | | Obtained from: OpenBSD
* Added #include <sys/types.h> to synopsis.alex1998-01-202-1/+4
| | | | Obtained from: OpenBSD
* Fixed missing #include in synopsis.bde1998-01-161-0/+2
|
* Fixed wrong prototype for clock_getres().bde1998-01-161-2/+2
|
* Typo fix.alex1998-01-151-2/+12
| | | | | | | Added EOPNOTSUPP and EMLINK to errors section. Added symlink(2) xref. Obtained from: OpenBSD
* Consistently reference init as .Xr init 8.alex1998-01-131-2/+2
| | | | Obtained from: OpenBSD
* Dump the constant NGROUPS in favor of the POSIX way:alex1998-01-131-9/+6
| | | | | | sysconf(_SC_NGROUPS_MAX). Submitted by: bde
* Use .Fn for sysconf(_SC_CLOCK_TCK) reference.alex1998-01-131-1/+3
| | | | Added $Id$.
* Formatting fix & improved comment for struct timeval.alex1998-01-111-1/+3
| | | | Obtained from: OpenBSD
* Fixed brk(2) xref.alex1998-01-111-1/+2
| | | | Obtained from: OpenBSD
* Added sys/types.h to synopsis as per POSIX.alex1998-01-111-1/+2
| | | | Obtained from: OpenBSD
* Replace sys/param.h with sys/types.h as per POSIX.alex1998-01-111-1/+9
| | | | | | Document the special case of gidsetlen == 0. Partially obtained from: OpenBSD
* Document that arg max is controllable via sysctl.alex1998-01-111-5/+7
|
* Formatting fix.alex1998-01-111-1/+2
| | | | Obtained from: OpenBSD
* Added EMFILE and ENFILE to errors section.alex1998-01-111-0/+5
| | | | Obtained from: OpenBSD
* .Xr sigvec --> sigactionalex1998-01-111-2/+2
| | | | Obtained from: OpenBSD
* Add <sys/types.h> to synopsis.alex1998-01-111-1/+4
| | | | | | | Correct a grammatical error. Add cross-reference to setrlimit(2). Obtained from: OpenBSD
* Expanded cross references.alex1998-01-026-8/+15
|
* Convert caddr_t --> void * for sys/mman.h functions.alex1997-12-319-16/+16
| | | | | | | | | | | | | | | | mlock, mmap, mprotect, msync, munlock, and munmap are defined by POSIX as taking void *. The const modifier has been added to mlock, munlock, and mprotect as the standard dictates. minherit comes from OpenBSD and has been updated to conform with their recent change to void *. madvise and mincore are not defined by POSIX, but their arguments have been modified to be consistent with the POSIX-defined functions. mincore takes a const pointer, but madvise does not due to the MADV_FREE case. Discussed with: bde
* Fixed formatting of the MADV_FREE flag description.alex1997-12-301-3/+3
| | | | Pointed out by: bde
* Typo fix.alex1997-12-301-2/+2
|
* Document MS_SYNC.alex1997-12-301-0/+1
|
* fork() checks RLIMIT_NPROC, not RLIMIT_NOFILE.hoek1997-12-261-1/+1
| | | | | pr: docs/5260 submitted-by: Niall Smart [3]njs3@doc.ic.ac.uk
* Fixed spelling of EACCES.bde1997-11-231-3/+3
|
* Add cross-references to rfork(2).jdp1997-11-182-1/+3
|
* Reviewed by: hackers@freebsd.org in generaljulian1997-11-132-1/+32
| | | | | | | | | | | | | Obtained from: Whistle Communications tree Add an option to the way UFS works dependent on the SUID bit of directories This changes makes things a whole lot simpler on systems running as fileservers for PCs and MACS. to enable the new code you must 1/ enable option SUIDDIR on the kernel. 2/ mount the filesystem with option suiddir. hopefully this makes it difficult enough for people to do this accidentally. see the new chmod(2) man page for detailed info.
* Reviewed by: various.julian1997-11-121-3/+2
| | | | | | | | | | | | | | | | Ever since I first say the way the mount flags were used I've hated the fact that modes, and events, internal and exported, and short-term and long term flags are all thrown together. Finally it's annoyed me enough.. This patch to the entire FreeBSD tree adds a second mount flag word to the mount struct. it is not exported to userspace. I have moved some of the non exported flags over to this word. this means that we now have 8 free bits in the mount flags. There are another two that might well move over, but which I'm not sure about. The only user visible change would have been in pstat -v, except that davidg has disabled it anyhow. I'd still like to move the state flags and the 'command' flags apart from each other.. e.g. MNT_FORCE really doesn't have the same semantics as MNT_RDONLY, but that's left for another day.
* Describe MNT_NOCLUSTER{R,W} flags.kato1997-11-091-0/+4
| | | | Pointed out by: bde
* changed prototype to match textjmg1997-11-051-8/+4
| | | | | changed sysctl to lsvfs as "sysctl vfs" doesn't return a listing of possible filesystem names
* Document EINVAL as a possible return value from open(2).joerg1997-10-221-0/+7
|
* Sorted lists.bde1997-10-211-21/+23
|
* Proper spacing in the Synopsis.max1997-10-161-2/+2
|
* Include the machine-dependent Makefile.inc for sys in the correct place.bde1997-10-151-1/+3
|
* Removed the subdirectory paths from the definitions of MAN[1-9]. Theybde1997-10-151-33/+21
| | | | | were a workaround for limitations in bsd.man.mk that were fixed about 2 years ago.
* Add the AIO/LIO to libc. They aren't fully done yet, but have been in thedyson1997-10-101-2/+4
| | | | kernel for a few months.
* Sort cross refereces in section SEE ALSO.wosch1997-09-295-8/+8
|
* Typo fixmsmith1997-09-281-1/+1
|
* Add __getcwd() syscall, and have getcwd() take a shot at it.phk1997-09-141-2/+2
| | | | | If your kernel doesn't support __getcwd() or if __getcwd() cannot deliver because of cache expiry, it does the canonical thing.
* A poll(2) manpage.peter1997-09-142-2/+190
| | | | Obtained from: NetBSD
* Generate poll syscall stubpeter1997-09-141-2/+2
|
* Document SA_NOCLDWAIT.joerg1997-09-131-17/+38
| | | | Make all the SA_* flags go into a tagged list, to improve readability.
* Removed superfluous quoting of function args.bde1997-09-074-6/+6
|
* Fixed style bug in pseudocode.bde1997-09-071-1/+1
|
* Reference the correct version of BSD at the bottom of thesteve1997-08-231-1/+1
| | | | | | manpage. PR: docs/3735
* Fixed off by 1 error.bde1997-08-211-2/+3
|
* Manpage for getsid(2).peter1997-08-192-2/+80
|
* Forgot to mention what getpgid(0) does.peter1997-08-191-0/+5
|
* Manpage for getpgid(2), wording taken from NetBSD.peter1997-08-192-3/+17
|
* Syscall stubs for getpgid()/getsid().peter1997-08-191-3/+3
|
* Reflect reality of sticky bits and UFS-based filesystems.steve1997-08-171-3/+10
| | | | | PR: docs/4198 Submitted by: Ada T. Lim <ada@not-enough.bandwidth.org>
OpenPOWER on IntegriCloud