aboutsummaryrefslogtreecommitdiff
path: root/kernel/vm/anon.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/vm/anon.c')
-rw-r--r--kernel/vm/anon.c8
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");
}