summaryrefslogtreecommitdiff
path: root/kernel/fs/shm.h
blob: 2cd7f58be7e5a371f1d0e320cc856147552437c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SHM_H
#define SHM_H
#include <stddef.h>
#include <sys/types.h>
#include <typedefs.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