1 2 3 4 5 6 7 8 9 10 11 12
#ifndef SHM_H #define SHM_H #include <stddef.h> #include <typedefs.h> #include <sys/types.h> void shm_init(void); int shm_open(const char *name, int oflag, mode_t mode); int shm_unlink(const char *name); int ftruncate(int fildes, u64 length); #endif