diff options
author | Ayma-n <aymanbt14@gmail.com> | 2024-01-28 23:09:02 -0500 |
---|---|---|
committer | Ayma-n <aymanbt14@gmail.com> | 2024-01-28 23:09:02 -0500 |
commit | 6d2c24b95ea2771d00b2e41367a18b0f06594bc8 (patch) | |
tree | 6f6874a2d71e68e1c6d19ee1487884af0aedb7f6 /kernel/vm/anon.c | |
parent | 6bd9a350148802b027d6b4d717358dc824d3d528 (diff) |
Fix make nyi names
Diffstat (limited to 'kernel/vm/anon.c')
-rw-r--r-- | kernel/vm/anon.c | 8 |
1 files changed, 4 insertions, 4 deletions
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"); } |