summaryrefslogtreecommitdiffstats
path: root/lib/libc/sys
Commit message (Collapse)AuthorAgeFilesLines
* Update for rev 1.205 of vm_mmap.c.trhodes2006-04-211-7/+6
| | | | Submitted by: fanf
* o Document SO_NOSIGPIPE, touch .Dd.maxim2006-04-151-1/+9
| | | | | | PR: docs/78479 Submitted by: Mikko Tyolajarvi MFC after: 2 weeks
* List pwritev in the NAME section.ru2006-04-141-1/+2
|
* Document that the documented 2GB mmap limit is actually apeter2006-03-231-22/+8
| | | | | | | | documentation bug. We switched to page indexes some time around FreeBSD 2.2. The actual 'len' limit is the maximum file size or what will fit in your address space, whichever comes first. It should be possible to make 1TB files on 32 bit systems, but of course address space runs out long before then.
* Add each directory's symbol map file to SYM_MAPS.deischen2006-03-131-0/+2
|
* Add symbol maps and initial symbol version definitions to libc.deischen2006-03-131-0/+950
| | | | Reviewed by: davidxu
* Remove mq.c, the POSIX mqueue is implemented in librt.davidxu2006-03-081-73/+0
| | | | Suggested by: deischen
* Remove a useless word.brueffer2006-03-051-1/+1
| | | | | | PR: 94087 Submitted by: Tadaaki Nagao <nagao@iij.ad.jp> MFC after: 3 days
* Sync with actual code.jcamou2006-03-031-2/+6
| | | | | | | | PR: docs/87681 Noticed by: Andreas Kohn <andreas@syndrom23.de> Reviewed by: brooks Approved by: trhodes (mentor) MFC after: 3 days
* Disconnect mqueue from buildworld, as I will implement it in seperateddavidxu2006-03-011-1/+1
| | | | library.
* Tell the truth about a) how to get the first fileid, andyar2006-02-221-5/+10
| | | | | | | | b) what return values from kldstat(2) can be expected. Bump .Dd. MFC after: 3 days
* - Massage wording to make it easier to understand and fix some grammar.brd2006-02-161-4/+4
| | | | | | | Submitted by: sbahra at gwu dot edu Reviewed by: ru@ Approved by: ceri@ MFC after: 3 days
* - In pipe() return the error returned by pipe_create(), rather thenglebius2006-01-301-1/+3
| | | | | | | | hardcoded ENFILES, which is incorrect. pipe_create() can fail due to ENOMEM. - Update manual page, describing ENOMEM return code. Reviewed by: arch
* Back out the previous change to rename.2. The previous rename()truckman2006-01-223-9/+8
| | | | | | | | | | | | | | behaviour of returning EINVAL when ".." is passed as either argument has been restored. rmdir("..") now returns EINVAL instead of EPERM. Document the previously undocumented behaviour of rmdir(".") returning EINVAL as required by POSIX and SUSv3. Bump the man page change date. undelete("..") now returns EINVAL instead of EPERM. Bump the man page change date. MFC after: 3 days
* rename(), rmdir(), and undelete() fail with EPERM if the last componenttruckman2006-01-213-0/+9
| | | | | | of the path is "..". MFC after: 3 days
* Add references to fhopen, fhstat, getfh, lgetfh and fhstatfs.grog2006-01-103-0/+6
| | | | Pointed out by: Antony Curtis <antony@mysql.com>
* Document the recently-added EINVAL behavior.dds2006-01-051-1/+7
| | | | MFC after: 1 week
* Add abort2 manual page.phk2005-12-232-1/+100
| | | | | Submitted by: "Wojciech A. Koszek" <dunstan@freebsd.czest.pl> Edited by: phk
* Sort .Xr by section number.davidxu2005-12-138-14/+14
| | | | Submitted by: ru
* Add cross references to siginfo.3.davidxu2005-12-1310-3/+13
|
* Fix markeup.davidxu2005-12-061-1/+2
| | | | Submitted by: ru
* Fix markup.davidxu2005-12-051-5/+13
| | | | Submitted by: ru
* Document SIGEV_NONE and SIGEV_SIGNAL.davidxu2005-12-051-0/+15
|
* Fix prototype.ru2005-12-031-1/+1
|
* Fix type of argument.ru2005-12-031-1/+1
|
* Break hard sentence break.ru2005-12-031-1/+2
|
* Remove implementation-defined, it has already been described in NOTESdavidxu2005-12-031-5/+0
| | | | section.
* Remove implementation-defined sentences.davidxu2005-12-033-22/+5
|
* Fix lots of markup and content bug.davidxu2005-12-037-139/+201
| | | | Submitted by: ru
* syscall -> system call.davidxu2005-12-027-25/+25
|
* Fix markup.davidxu2005-12-021-1/+4
|
* Tweak markup for POSIX standards. Minor wordsmithing.imp2005-12-011-3/+7
| | | | Submitted by: ru@
* Document O_NOCTTY and O_SYNC. O_NOCTTY is a nop on freebsd, while onimp2005-12-011-0/+17
| | | | | | | other systems it prevents a tty from becoming a controlling tty on the open. O_SYNC is the POSIX name for O_FSYNC. The Markup Police may need to tweak my references to standards.
* Update conformance and history sections.davidxu2005-11-304-4/+16
|
* Symlink mq_send to mq_timedsend.davidxu2005-11-301-0/+2
| | | | Symlink mq_receive to mq_timedreceive.
* Add manuals for POSIX message queue.davidxu2005-11-308-2/+1077
|
* Implement following POSIX message queue interfaces:davidxu2005-11-262-1/+74
| | | | mq_close, mq_getattr, mq_receive, mq_send.
* Make SYNOPSIS compile.ru2005-11-241-1/+1
| | | | Attn peter@: this manpage wasn't synced with your code changes.
* Fix prototypes.ru2005-11-241-3/+3
| | | | | Attn davidxu@: most likely, the description should also be tweaked after your undocumented changes that changed these prototypes.
* Do not explicitly state how many bytes an argument list can be in thesimon2005-11-191-1/+0
| | | | | | description of E2BIG, since it's now larger on some platforms. MFC after: 3 days
* Document CLOCK_UPTIME which returns the current uptime in SI seconds.andre2005-11-181-1/+3
| | | | | | | At the moment it is just an alias for CLOCK_MONOTONIC which reports the same number. Sponsored by: TCP/IP Optimization Fundraise 2005
* Fix up markup etc. in recently born manpage.ru2005-11-185-152/+316
|
* -mdoc sweep.ru2005-11-177-20/+37
|
* add continued status.davidxu2005-11-121-4/+4
|
* Insert missing copyright headers.davidxu2005-11-125-0/+10
|
* Only signo should be marked with .Fa.davidxu2005-11-111-1/+2
|
* Fix plural.delphij2005-11-111-1/+1
|
* Fix plural.davidxu2005-11-111-1/+1
|
* Fix copy-paste issue.davidxu2005-11-111-2/+0
|
* Add POSIX timer manuals.davidxu2005-11-114-0/+368
|
OpenPOWER on IntegriCloud