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:
sheldonh 2001-12-11 11:49:58 +00:00
parent 2e77fc4d02
commit b7ccf76823

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