[Libsysio-commit] HEAD: libsysio/include inode.h
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2008-12-15 19:56:02
|
Update of /cvsroot/libsysio/libsysio/include In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20145/include Modified Files: inode.h Log Message: The all-pbnodes list is changed to be maintained as a tailq, instead of a simple linked list. Index: inode.h =================================================================== RCS file: /cvsroot/libsysio/libsysio/include/inode.h,v retrieving revision 1.46 retrieving revision 1.47 diff -u -w -b -B -p -r1.46 -r1.47 --- inode.h 15 Dec 2008 18:32:40 -0000 1.46 +++ inode.h 15 Dec 2008 19:55:54 -0000 1.47 @@ -277,7 +277,7 @@ struct pnode_base { LIST_ENTRY(pnode_base) pb_sibs; /* links to siblings */ LIST_HEAD(, pnode) pb_aliases; /* aliases */ #ifdef P_RECLAIM_DEBUG - LIST_ENTRY(pnode_base) pb_links; /* all pbnodes links */ + TAILQ_ENTRY(pnode_base) pb_links; /* all pbnodes links */ #endif }; |