Correct a comment that should have been updated in rev 1.43, when

CIRCLEQ was removed.

PR:		kern/32688
Submitted by:	Jordan DeLong <fracture@allusion.net>
This commit is contained in:
Sheldon Hearn 2001-12-11 11:49:58 +00:00
parent f4029c1446
commit 9144eed401
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=87651

View File

@ -40,8 +40,8 @@
#include <machine/ansi.h> /* for __offsetof */
/*
* This file defines five types of data structures: singly-linked lists,
* singly-linked tail queues, lists, tail queues, and circular queues.
* This file defines four types of data structures: singly-linked lists,
* singly-linked tail queues, lists and tail queues.
*
* A singly-linked list is headed by a single forward pointer. The elements
* are singly linked for minimum space and pointer manipulation overhead at