2018-10-26 16:38:23 +00:00
|
|
|
#ifndef UTIL_SHM_H
|
|
|
|
#define UTIL_SHM_H
|
|
|
|
|
2021-08-07 11:46:38 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2018-10-26 16:38:23 +00:00
|
|
|
int create_shm_file(void);
|
|
|
|
int allocate_shm_file(size_t size);
|
2021-08-07 11:46:38 +00:00
|
|
|
bool allocate_shm_file_pair(size_t size, int *rw_fd, int *ro_fd);
|
2018-10-26 16:38:23 +00:00
|
|
|
|
|
|
|
#endif
|