threadlist         70 kern/include/threadlist.h void threadlist_init(struct threadlist *tl);
threadlist         71 kern/include/threadlist.h void threadlist_cleanup(struct threadlist *tl);
threadlist         74 kern/include/threadlist.h bool threadlist_isempty(struct threadlist *tl);
threadlist         77 kern/include/threadlist.h void threadlist_addhead(struct threadlist *tl, struct thread *t);
threadlist         78 kern/include/threadlist.h void threadlist_addtail(struct threadlist *tl, struct thread *t);
threadlist         79 kern/include/threadlist.h struct thread *threadlist_remhead(struct threadlist *tl);
threadlist         80 kern/include/threadlist.h struct thread *threadlist_remtail(struct threadlist *tl);
threadlist         83 kern/include/threadlist.h void threadlist_insertafter(struct threadlist *tl,
threadlist         85 kern/include/threadlist.h void threadlist_insertbefore(struct threadlist *tl,
threadlist         87 kern/include/threadlist.h void threadlist_remove(struct threadlist *tl, struct thread *t);
threadlist         61 kern/thread/threadlist.c threadlist_init(struct threadlist *tl)
threadlist         75 kern/thread/threadlist.c threadlist_cleanup(struct threadlist *tl)
threadlist         92 kern/thread/threadlist.c threadlist_isempty(struct threadlist *tl)
threadlist        163 kern/thread/threadlist.c threadlist_addhead(struct threadlist *tl, struct thread *t)
threadlist        173 kern/thread/threadlist.c threadlist_addtail(struct threadlist *tl, struct thread *t)
threadlist        183 kern/thread/threadlist.c threadlist_remhead(struct threadlist *tl)
threadlist        201 kern/thread/threadlist.c threadlist_remtail(struct threadlist *tl)
threadlist        219 kern/thread/threadlist.c threadlist_insertafter(struct threadlist *tl,
threadlist        227 kern/thread/threadlist.c threadlist_insertbefore(struct threadlist *tl,
threadlist        235 kern/thread/threadlist.c threadlist_remove(struct threadlist *tl, struct thread *t)