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/vm/anon.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kernel/vm/anon.c') diff --git a/kernel/vm/anon.c b/kernel/vm/anon.c index a998d70..4a92fc9 100644 --- a/kernel/vm/anon.c +++ b/kernel/vm/anon.c @@ -27,7 +27,7 @@ static mobj_ops_t anon_mobj_ops = {.get_pframe = NULL, */ void anon_init() { - NOT_YET_IMPLEMENTED("VM: ***none***"); + NOT_YET_IMPLEMENTED("VM: anon_init"); } /* @@ -36,7 +36,7 @@ void anon_init() */ mobj_t *anon_create() { - NOT_YET_IMPLEMENTED("VM: ***none***"); + NOT_YET_IMPLEMENTED("VM: anon_create"); return NULL; } @@ -46,7 +46,7 @@ mobj_t *anon_create() */ static long anon_fill_pframe(mobj_t *o, pframe_t *pf) { - NOT_YET_IMPLEMENTED("VM: ***none***"); + NOT_YET_IMPLEMENTED("VM: anon_fill_pframe"); return 0; } @@ -61,5 +61,5 @@ static long anon_flush_pframe(mobj_t *o, pframe_t *pf) { return 0; } */ static void anon_destructor(mobj_t *o) { - NOT_YET_IMPLEMENTED("VM: ***none***"); + NOT_YET_IMPLEMENTED("VM: anon_destructor"); } -- cgit v1.2.3-70-g09d2