use helper function to list the file system

This commit is contained in:
Stefan Lankes 2015-01-18 08:02:14 +01:00
parent 2b26565b16
commit 64a7fafe41

View file

@ -157,6 +157,11 @@ int main(void)
create_kernel_task(&id1, foo, "foo1", NORMAL_PRIO);
create_kernel_task(&id2, wrapper, "userfoo", NORMAL_PRIO);
#if 1
kputs("Filesystem:\n");
list_fs(fs_root, 1);
#endif
while(1) {
HALT;
}