summaryrefslogtreecommitdiffstats
path: root/share/man/man3/queue.3
Commit message (Collapse)AuthorAgeFilesLines
* Markup fixes.ru2006-09-181-1/+1
|
* 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.
* Remove a spurious newline. The TAILQ_INIT() is part of the 'faster tailqjhb2005-10-171-1/+0
| | | | | | deletion' example. MFC after: 1 week
* Some grammar, spelling, and mdoc(7) fixes. No content changes.trhodes2004-12-291-1/+1
| | | | | PR: 75581 Submitted by: Nobuyuki Koganemaru n-kogane@syd.odn.ne.jp (original version)
* mdoc(7) fixes.ru2004-07-071-1/+1
|
* Spelling fixes.mpp2004-06-211-1/+1
|
* Add safe _FOREACH iterators to the rest of the queue.h types.kan2003-08-141-0/+76
|
* Document LIST_FOREACH_SAFE in queue(3).bmilekic2003-08-131-1/+24
| | | | | Asked with "please" by Ruslan Ermilov. I've always had a weakness for "please".
* Document STAILQ_CONCAT and TAILQ_CONCAT.tmm2002-04-171-0/+24
| | | | | | | PR: 20024 Submitted by: Tony Finch <dot@dotat.at> (TAILQ_CONCAT, slightly changed by me) Reviewed by: ru (earlier version)
* mdoc(7) police: tidy up previous delta.ru2002-01-091-2/+4
|
* Document some behaviour I'm depending on.julian2001-12-281-0/+2
| | | | (TAILQ_FOREACH leaves the variable NULL if there were no more to do)
* mdoc(7) police: Use the new .In macro for #include statements.ru2001-10-011-1/+1
|
* STAILQ_LAST() macro takes 3 arguments, not 1.sobomax2001-08-211-1/+1
|
* Removed whitespace at end-of-line; no content changes. I simply didschweikh2001-07-141-2/+2
| | | | | | | | | | cd src/share; find man[1-9] -type f|xargs perl -pi -e 's/[ \t]+$//' BTW, what editors are the culprits? I'm using vim and it shows me whitespace at EOL in troff files with a thick blue block... Reviewed by: Silence from cvs diff -b MFC after: 7 days
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* Remove the last remnants of circle queues.dd2001-03-151-6/+5
| | | | | | PR: 25184 Submitted by: Alex Kapranoff <alex@kapran.bitmcnit.bryansk.su> Approved by: nik
* Remove comma after final .Nm entry before .Ndben2000-12-301-1/+1
|
* CIRCLEQs are a disgrace to everything Knuth taught us in Volume 1 Chapter 2.phk2000-12-291-220/+3
| | | | | | Retire them before anybody starts to use them again. Use TAILQ instead, it provides the same functionality.
* Manpage incorrectly states that STAILQ_REMOVE_HEAD takes an argalfred2000-11-091-3/+1
| | | | | called 'elm'. It doesn't take an arg 'elm', it simply removes the element at the head of the list.
* Fix minor typo.markm2000-07-271-1/+1
|
* (1) document *_HEAD_INITIALIZERjake2000-06-101-21/+54
| | | | | | | (2) fix a STAILQ_HEAD that should have been STAILQ_FIRST Requested by: (1) bde (2) W Gerald Hicks <jhix@mindspring.com>
* Document TAILQ_FOREACH_REVERSE() and CIRCLEQ_FOREACH_REVERSE() macros.archie2000-05-011-1/+24
| | | | Submitted by: Jake Burkholder <jburkhol@home.com>
* Update STAILQ example to use STAILQ_REMOVE_HEAD instead ofjhb2000-03-271-1/+1
| | | | | | | TAILQ_REMOVE_HEAD. PR: docs/17590 Submitted by: Benno Rice <benno@netizen.com.au>
* Sync with reality.phantom1999-12-191-26/+167
| | | | | PR: docs/15036 Submitted by: Jake Burkholder <jburkhol@home.com>
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Spelling corrections.jkoshy1998-06-061-2/+2
| | | | | PR: 6868 Submitted by: Josh Gilliam <josh@quick.net>
* Fixed wrong number of args in STAILQ_REMOVE_HEAD() in synopsis.bde1997-03-191-2/+2
|
* The CIRCLEQ_ENTRY example was wrong. Part of PR# 2917.mpp1997-03-091-2/+2
|
* add missing cvs Id lines.jmg1997-03-071-0/+1
|
* Minor mdoc cleanup.mpp1997-01-311-15/+15
|
* Add SLIST_EMPTY, SLIST_FIRST, SLIST_NEXT.phk1996-12-291-0/+6
| | | | | Is it time to split this into one "intro" type and a number of detailed pages ?
* Use the .Bx macro where appropriate.mpp1996-08-221-1/+2
|
* Another man page with a messed up .Dd line.mpp1996-07-111-1/+1
|
* Document 5 new macros in TAILQ family.phk1996-04-081-5/+32
|
* Update the queue man page for the new SLIST and STAILQ macros.gibbs1996-03-311-14/+331
|
* 4.4Lite2 implemented the LIST_INSERT_BEFORE and TAILQ_INSERT_BEFOREgibbs1996-02-121-2/+2
| | | | | | | exactly as I did (should have checked there first I guess) except my macro for TAILQ_INSERT_BEFORE took an unneeded arg. We now match 4.4Lite2. Suggested by: Jeffrey Hsu <hsu@FreeBSD.org>
* Add LIST_INSERT_BEFORE and TAILQ_INSERT_BEFORE.gibbs1996-01-291-10/+78
| | | | | Change examples to actually free() the nodes removed from lists. Give examples of faster list deletion routines.
* BSD 4.4 Lite Share Sourcesrgrimes1994-05-301-0/+454
OpenPOWER on IntegriCloud