summaryrefslogtreecommitdiff
path: root/kernel/fs/shm.h
blob: 977c18f8beb02942174d15a359817ad2f654ecab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef SHM_H
#define SHM_H
#include <stddef.h>
#include <typedefs.h>

typedef int mode_t;

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