mirror of
https://github.com/drasko/codezero.git
synced 2026-01-13 19:33:15 +01:00
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:
@@ -263,11 +263,9 @@ int sys_mutex_control(syscall_context_t *regs)
|
||||
|
||||
switch (mutex_op) {
|
||||
case MUTEX_CONTROL_LOCK:
|
||||
printk("(%d): MUTEX_LOCK\n", current->tid);
|
||||
ret = mutex_control_lock(mutex_physical);
|
||||
break;
|
||||
case MUTEX_CONTROL_UNLOCK:
|
||||
printk("(%d): MUTEX_UNLOCK\n", current->tid);
|
||||
ret = mutex_control_unlock(mutex_physical);
|
||||
break;
|
||||
default:
|
||||
|
||||
Reference in New Issue
Block a user