From 6d2c24b95ea2771d00b2e41367a18b0f06594bc8 Mon Sep 17 00:00:00 2001 From: Ayma-n Date: Sun, 28 Jan 2024 23:09:02 -0500 Subject: Fix make nyi names --- kernel/fs/pipe.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'kernel/fs/pipe.c') diff --git a/kernel/fs/pipe.c b/kernel/fs/pipe.c index b1d365f..7c41561 100644 --- a/kernel/fs/pipe.c +++ b/kernel/fs/pipe.c @@ -120,7 +120,7 @@ void pipe_init(void) */ static pipe_t *pipe_create(void) { - NOT_YET_IMPLEMENTED("PIPES: ***none***"); + NOT_YET_IMPLEMENTED("PIPES: pipe_create"); return NULL; } @@ -129,7 +129,7 @@ static pipe_t *pipe_create(void) */ static void pipe_destroy(pipe_t *pipe) { - NOT_YET_IMPLEMENTED("PIPES: ***none***"); + NOT_YET_IMPLEMENTED("PIPES: pipe_destroy"); } /* pipefs vnode operations */ @@ -162,7 +162,7 @@ static void pipe_delete_vnode(fs_t *fs, vnode_t *vnode) */ static vnode_t *pget(void) { - NOT_YET_IMPLEMENTED("PIPES: ***none***"); + NOT_YET_IMPLEMENTED("PIPES: pget"); return NULL; } @@ -179,7 +179,7 @@ static vnode_t *pget(void) */ int do_pipe(int pipefd[2]) { - NOT_YET_IMPLEMENTED("PIPES: ***none***"); + NOT_YET_IMPLEMENTED("PIPES: do_pipe"); return -ENOTSUP; } @@ -199,7 +199,7 @@ int do_pipe(int pipefd[2]) */ static long pipe_read(vnode_t *vnode, size_t pos, void *buf, size_t count) { - NOT_YET_IMPLEMENTED("PIPES: ***none***"); + NOT_YET_IMPLEMENTED("PIPES: pipe_read"); return -EINVAL; } @@ -215,7 +215,7 @@ static long pipe_read(vnode_t *vnode, size_t pos, void *buf, size_t count) static long pipe_write(vnode_t *vnode, size_t pos, const void *buf, size_t count) { - NOT_YET_IMPLEMENTED("PIPES: ***none***"); + NOT_YET_IMPLEMENTED("PIPES: pipe_write"); return -EINVAL; } @@ -227,7 +227,7 @@ static long pipe_write(vnode_t *vnode, size_t pos, const void *buf, */ static long pipe_stat(vnode_t *vnode, stat_t *ss) { - NOT_YET_IMPLEMENTED("PIPES: ***none***"); + NOT_YET_IMPLEMENTED("PIPES: pipe_stat"); return -EINVAL; } @@ -239,7 +239,7 @@ static long pipe_stat(vnode_t *vnode, stat_t *ss) */ static long pipe_acquire(vnode_t *vnode, file_t *file) { - NOT_YET_IMPLEMENTED("PIPES: ***none***"); + NOT_YET_IMPLEMENTED("PIPES: pipe_acquire"); return 0; } @@ -251,6 +251,6 @@ static long pipe_acquire(vnode_t *vnode, file_t *file) */ static long pipe_release(vnode_t *vnode, file_t *file) { - NOT_YET_IMPLEMENTED("PIPES: ***none***"); + NOT_YET_IMPLEMENTED("PIPES: pipe_release"); return 0; } -- cgit v1.2.3-70-g09d2