diff --git a/sys/fs/vfs/file.c b/sys/fs/vfs/file.c index 8bb4a69..0abe209 100644 --- a/sys/fs/vfs/file.c +++ b/sys/fs/vfs/file.c @@ -236,7 +236,7 @@ ************************************************************************/ //void sysFopen(const char *file,char *flags,userFileDescriptor *userFd) { int sys_fopen(struct thread *td, struct sys_fopen_args *args) { - + kprintf("sys_fopen"); if (args->FILE == NULL) { kprintf("Error: userFd == NULL, File: %s, Line: %i\n", __FILE__, __LINE__); return (-1); diff --git a/sys/kernel/vfs_calls.c b/sys/kernel/vfs_calls.c index 91b5042..365a8d9 100644 --- a/sys/kernel/vfs_calls.c +++ b/sys/kernel/vfs_calls.c @@ -47,7 +47,7 @@ int error = 0x0; int fd = 0x0; struct file *nfp = 0x0; - + kprintf("sys_openat?"); #ifdef DEBUG_OPENAT kprintf("openat"); #endif