summaryrefslogtreecommitdiffstats
path: root/share/man/man3
Commit message (Collapse)AuthorAgeFilesLines
...
* The removal of CIRCLEQ left four queue macros. One sentence was missedemaste2006-03-251-1/+1
| | | | | | | | in the man page update. PR: docs/94938 Submitted by: Ed Schouten <ed@fxq.nl> MFC After: 3 days
* Typesetting fix for -r1.137.mckusick2006-03-241-2/+4
| | | | | | | If a tail queue is empty the return value of TAILQ_LAST is not undefined, it is NULL. Submitted by: Ruslan Ermilov <ru@FreeBSD.org>
* If a tail queue is empty the return value is notmckusick2006-03-221-2/+2
| | | | undefined, it is NULL.
* Reimplementation of world/kernel build options. For details, see:ru2006-03-171-1/+3
| | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
* - Massage wording to make it easier to understand and fix some grammar.brd2006-02-161-2/+2
| | | | | | | Submitted by: sbahra at gwu dot edu Reviewed by: ru@ Approved by: ceri@ MFC after: 3 days
* Does not return EBUSY, the mutex will keep blocking until it's unlocked.trhodes2006-01-311-4/+0
|
* Add the RB_PROTOTYPE_STATIC and RB_GENERATE_STATIC macros.jasone2006-01-192-7/+21
| | | | Approved by: markm (mentor)
* o Sort MLINKS.maxim2006-01-111-1/+1
|
* Add the RB_NFIND() macro, which is useful for red-black tree searchesjasone2006-01-112-1/+7
| | | | | | | for which there may not be an exact match. Reviewed by: glebius, julian Approved by: markm (mentor)
* Style fixs, add missing word 'signal'.davidxu2005-12-141-4/+5
| | | | Reviewed by: deischen
* Add siginfo.davidxu2005-12-132-0/+310
|
* Fix prototype.ru2005-11-241-1/+1
|
* Remove a spurious newline. The TAILQ_INIT() is part of the 'faster tailqjhb2005-10-171-1/+0
| | | | | | deletion' example. MFC after: 1 week
* Fix typos and use consistent section names in manual pages:hrs2005-07-151-1/+1
| | | | | | | | | | s/SYSCTLS/SYSCTL VARIABLES/ s/TUNABLES/LOADER TUNABLES/ s/CAVEAT/CAVEATS/ s/DESCIPTION/DESCRIPTION/ Reviewed by: ru MFC after: 3 days
* Use 'manual page' instead of 'man page' for consistency.hmp2005-06-303-3/+3
| | | | Approved by: re (hrs)
* (Mostly) markup fixes.ru2005-06-161-3/+4
| | | | Approved by: re (blanket)
* The correct copyright notice for manpages that copy material from Openkeramida2005-05-181-0/+10
| | | | | | | | Group's documentation is `/usr/share/examples/mdoc/POSIX-copyright', not the one I copied from `/usr/share/examples/etc/bsd-copyright'. Suggested by: simon 2nd pointy hat of the day: yours truly
* Add a manpage for pthread_atfork(3). This copies a lot of the text ofkeramida2005-05-183-0/+117
| | | | | | | | | | | | | | | | | | | | | the Open Group manpage for pthread_atfork(), available online at: http://www.opengroup.org/onlinepubs/009695399/functions/pthread_atfork.html which should be ok, since Daniel Eischen had mailed me about Open Group manpages and the fact that they have granted permission to FreeBSD to use their material. Any differences from the OG text are my changes to the original manpage text submitted by Alex Vasylenko: - In an effort to clean up the part that describes hooks and their calling order, I used a list instead of a single paragraph for all the three types of fork() hooks. - After a short discussion with Dima Dorfman a long long time ago in a far away galaxy, I changed the RETURN VALUES section to look more like the rest of the pthread_xxx.3 manpages. PR: docs/68201 Submitted by: Alex Vasylenko <lxv@omut.org>
* Remove fpsetsticky(). This was added for SysV compatibility, but duedas2005-03-151-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to mistakes from day 1, it has always had semantics inconsistent with SVR4 and its successors. In particular, given argument M: - On Solaris and FreeBSD/{alpha,sparc64}, it clobbers the old flags and *sets* the new flag word to M. (NetBSD, too?) - On FreeBSD/{amd64,i386}, it *clears* the flags that are specified in M and leaves the remaining flags unchanged (modulo a small bug on amd64.) - On FreeBSD/ia64, it is not implemented. There is no way to fix fpsetsticky() to DTRT for both old FreeBSD apps and apps ported from other operating systems, so the best approach seems to be to kill the function and fix any apps that break. I couldn't find any ports that use it, and any such ports would already be broken on FreeBSD/ia64 and Linux anyway. By the way, the routine has always been undocumented in FreeBSD, except for an MLINK to a manpage that doesn't describe it. This manpage has stated since 5.3-RELEASE that the functions it describes are deprecated, so that must mean that functions that it is *supposed* to describe but doesn't are even *more* deprecated. ;-) Note that fpresetsticky() has been retained on FreeBSD/i386. As far as I can tell, no other operating systems or ports of FreeBSD implement it, so there's nothing for it to be inconsistent with. PR: 75862 Suggested by: bde
* Expand *n't contractions.ru2005-02-133-3/+3
|
* Document EBUSY.trhodes2005-02-081-1/+5
| | | | | PR: 73387 Submitted by: Thomas Ludwig <tludwig@smr.ch> (original version)
* Fixed xref.ru2005-01-211-2/+2
|
* Sort sections.ru2005-01-2112-102/+102
|
* Improved markup.ru2005-01-131-47/+48
|
* Some grammar, spelling, and mdoc(7) fixes. No content changes.trhodes2004-12-293-3/+4
| | | | | PR: 75581 Submitted by: Nobuyuki Koganemaru n-kogane@syd.odn.ne.jp (original version)
* NOLIBC_R -> NO_LIBC_Rru2004-12-211-1/+1
| | | | | NOLIBPTHREAD -> NO_LIBPTHREAD NOLIBTHR -> NO_LIBTHR
* Mutually cross-reference sysexits(3) and err(3). Add text to err(3)jkoshy2004-10-041-0/+1
| | | | | | recommending that the standard exit codes in sysexits(3) be used. Reviewed by: ru
* Sort MAN and MLINKS in dictionary order ignoring case.ru2004-09-191-3/+3
|
* Add a man page for tgmath.h.stefanf2004-08-132-0/+152
| | | | Reviewed by: keramida
* mdoc(7) fixes.ru2004-07-071-1/+1
|
* Added missing punctuation.ru2004-07-071-1/+1
|
* Mechanically kill hard sentence breaks and double whitespaces.ru2004-07-0319-38/+68
|
* Removed trailing whitespace.ru2004-07-021-1/+1
|
* Spelling fixes.mpp2004-06-214-4/+4
|
* Fixed markup bugs.ru2004-06-174-54/+51
|
* Fixed markup bugs.ru2004-06-172-23/+26
| | | | Spell function correctly when talking about restarting after a signal.
* Cross-reference fenv(3).das2004-06-061-0/+5
|
* Add missing links.pjd2004-06-041-0/+5
|
* Support for dynamic adjustment of FPU precision is only available ondas2004-05-051-0/+7
| | | | | | i386 and amd64, so fp[gs]prec(3) don't exist on other platforms. PR: 52882
* Add a LIBRARY section.simon2004-04-081-0/+4
| | | | | Submitted by: Craig Rodrigues <rodrigc@crodrigues.org> PR: docs/65208
* Implement PThreads barriers and barrier attributes.mtm2004-02-193-0/+315
|
* o Implement the pthread_spin_* functions in libthr.mtm2004-01-223-0/+287
| | | | o Man pages
* Use a single style for share/man/ makefiles:ru2004-01-201-210/+230
| | | | | | | | - Sort MAN and MLINKS in "dictionary" order ignoring case. - For multi-value MAN and multi-pair MLINKS, put each value/pair on its own line, for easier sorting and so that further diffs are easier to see.
* Add an implementation of pthread_rwlock_timed{rd,wr}lock() to libthr withmtm2004-01-163-0/+227
| | | | attendant documentation.
* Removed outdated text about libc_r replacing libc (it now providesru2004-01-151-36/+19
| | | | | | | | | | | | just libc functions wrappers), and updated text to match reality: there are three threading libraries in FreeBSD these days. Removed instructions of how not to build libc_r, it's documented in the make.conf(5) manpage already. Removed description of the FreeBSD-specific gcc(1) option, -pthread. While it's still provided (for backwards compatibility reasons), its usefulness is questionable.
* Removed the IMPLEMENTATION NOTES section made redundant by notru2004-01-151-9/+0
| | | | putting libc_r into the LIBRARY section.
* pthread_multi_np() is implemented in all threading libraries.ru2004-01-151-0/+10
| | | | pthread_single_np() is not implemented in libthr.
* Revert previous delta -- these interfaces aren't supported by libthr.ru2004-01-152-2/+0
|
* Document interfaces that are supported by libthr.ru2004-01-1552-0/+52
|
* Assorted markup fixes.ru2004-01-151-30/+53
|
OpenPOWER on IntegriCloud