diff options
Diffstat (limited to 'kernel/proc/kthread.c')
-rw-r--r-- | kernel/proc/kthread.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/proc/kthread.c b/kernel/proc/kthread.c index f1c541c..1104b31 100644 --- a/kernel/proc/kthread.c +++ b/kernel/proc/kthread.c @@ -68,7 +68,7 @@ void kthread_init() kthread_t *kthread_create(proc_t *proc, kthread_func_t func, long arg1, void *arg2) { - NOT_YET_IMPLEMENTED("PROCS: ***none***"); + NOT_YET_IMPLEMENTED("PROCS: kthread_create"); return NULL; } @@ -86,7 +86,7 @@ kthread_t *kthread_create(proc_t *proc, kthread_func_t func, long arg1, */ kthread_t *kthread_clone(kthread_t *thr) { - NOT_YET_IMPLEMENTED("VM: ***none***"); + NOT_YET_IMPLEMENTED("VM: kthread_clone"); return NULL; } @@ -124,7 +124,7 @@ void kthread_destroy(kthread_t *thr) */ void kthread_cancel(kthread_t *thr, void *retval) { - NOT_YET_IMPLEMENTED("PROCS: ***none***"); + NOT_YET_IMPLEMENTED("PROCS: kthread_cancel"); } /* @@ -132,5 +132,5 @@ void kthread_cancel(kthread_t *thr, void *retval) */ void kthread_exit(void *retval) { - NOT_YET_IMPLEMENTED("PROCS: ***none***"); + NOT_YET_IMPLEMENTED("PROCS: kthread_exit"); } |