Removed all unecessary prints from the mutex test and the kernel

- removed (%d) Sleeping print from contended kernel mutexes.
- removed (%d) Waiting print from WAIT_EVENT used by the pager for suspending tasks.
- removed prints from the mutex_control syscall and user mutex test.
This commit is contained in:
Bahadir Balban
2009-06-01 16:02:10 +03:00
parent 5a616d1eb5
commit 13d469f659
6 changed files with 25 additions and 33 deletions

View File

@@ -59,7 +59,7 @@ do { \
task_set_wqh(current, wqh, &wq); \
(wqh)->sleepers++; \
list_add_tail(&wq.task_list, &(wqh)->task_list);\
printk("(%d) waiting...\n", current->tid); \
/* printk("(%d) waiting...\n", current->tid);*/ \
sched_prepare_sleep(); \
spin_unlock(&(wqh)->slock); \
schedule(); \