start io subsystem

This commit is contained in:
2025-06-14 22:16:35 +01:00
parent 34ea87ded0
commit 49d5847980
8 changed files with 95 additions and 17 deletions

19
driver/counter_io_calls.h Normal file
View File

@ -0,0 +1,19 @@
#ifndef _COUNTER_IO_CALLS_H_
#define _COUNTER_IO_CALLS_H_
#ifndef __KERNEL__
#include <stdint.h>
#define u64 uint64_t
#define u32 uint32_t
#endif
struct observation {
u64 ts_sec;
u64 ts_nsec;
u32 value;
};
#endif /* _COUNTER_IO_CALLS_H_ */