patch-2.3.48 linux/include/linux/list.h
Next file: linux/include/linux/lists.h
Previous file: linux/include/linux/iso_fs.h
Back to the patch index
Back to the overall index
- Lines: 10
- Date:
Thu Feb 24 10:15:54 2000
- Orig file:
v2.3.47/linux/include/linux/list.h
- Orig date:
Sun Jul 11 22:50:27 1999
diff -u --recursive --new-file v2.3.47/linux/include/linux/list.h linux/include/linux/list.h
@@ -104,6 +104,9 @@
#define list_entry(ptr, type, member) \
((type *)((char *)(ptr)-(unsigned long)(&((type *)0)->member)))
+#define list_for_each(pos, head) \
+ for (pos = (head)->next; pos != (head); pos = pos->next)
+
#endif /* __KERNEL__ */
#endif
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)