Mon 14 Oct 23:14:00 CEST 2024

This commit is contained in:
sbosse 2024-10-14 23:14:31 +02:00
parent 919c31d3a8
commit e2cab02874

View File

@ -0,0 +1,29 @@
/*
Copyright (C) 2016-2019 The University of Notre Dame
This software is distributed under the GNU General Public License.
See the file LICENSE for details.
*/
#include "kernel/types.h"
#include "library/kernel_object_string.h"
#include "library/string.h"
const char *kernel_object_string( kobject_type_t type )
{
switch(type) {
case KOBJECT_FILE:
return "file";
case KOBJECT_DIR:
return "directory";
case KOBJECT_DEVICE:
return "device";
case KOBJECT_WINDOW:
return "window";
case KOBJECT_CONSOLE:
return "console";
case KOBJECT_PIPE:
return "pipe";
default:
return "unknown";
}
}