diagdummy Test concurrent openfs

This commit is contained in:
2025-11-10 20:23:28 +01:00
parent 7e3b162591
commit d81d1133dd
3 changed files with 20 additions and 11 deletions

9
user/diagdummy/openf.c Normal file
View File

@ -0,0 +1,9 @@
#include <stdint.h>
#include <stddef.h>
#include <ulib.h>
void diagdummy_openf(void) {
fsh_t h = fs_openf("base:/bin/init", FS_OF_READ);
uprintf("h = %d\n", h);
for(;;);
}