Removed various printfs from fs0 path lookup etc.

This commit is contained in:
Bahadir Balban
2008-09-16 17:41:47 +03:00
parent 510852b8b8
commit 270cead377
4 changed files with 27 additions and 21 deletions

View File

@@ -35,7 +35,7 @@ int pager_sys_open(l4id_t sender, l4id_t opener, int fd)
struct tcb *task;
struct vnode *v;
printf("%s/%s\n", __TASKNAME__, __FUNCTION__);
// printf("%s/%s\n", __TASKNAME__, __FUNCTION__);
/* Check if such task exists */
if (!(task = find_task(opener))) {
@@ -503,7 +503,8 @@ int sys_readdir(l4id_t sender, int fd, void *buf, int count)
struct dentry *d;
struct tcb *t;
printf("%s/%s\n", __TASKNAME__, __FUNCTION__);
// printf("%s/%s\n", __TASKNAME__, __FUNCTION__);
/* Get the task */
BUG_ON(!(t = find_task(sender)));