Skip to content

Instantly share code, notes, and snippets.

@vassilit
vassilit / fuse-test-ready.c
Last active February 23, 2025 20:23
simple test program to bench when the FS is ready after returning from fuse_main()
#define _DEFAULT_SOURCE
#define FUSE_USE_VERSION 31
#include <fuse.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/wait.h>