Remove out of date comments

This commit is contained in:
Julian Elischer 2007-10-21 03:31:40 +00:00
parent cae927b25f
commit b3ee16fcd8

View File

@ -47,8 +47,8 @@ void kproc_start(const void *);
int kproc_create(void (*)(void *), void *, struct proc **,
int flags, int pages, const char *, ...) __printflike(6, 7);
void kproc_exit(int) __dead2;
int kproc_resume(struct proc *); /* XXXKSE */
int kproc_suspend(struct proc *, int); /* XXXKSE */
void kproc_suspend_check(struct proc *); /* XXXKSE */
int kproc_resume(struct proc *);
int kproc_suspend(struct proc *, int);
void kproc_suspend_check(struct proc *);
#endif /* !_SYS_KTHREAD_H_ */