projects
/
winnie
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
ce9d18450091a26af9957f0335f6f63fb75aaa30
[winnie]
/
src
/
shalloc.h
1
#ifndef SHALLOC_H_
2
#define SHALLOC_H_
3
4
bool init_shared_memory();
5
void destroy_shared_memory();
6
7
void *shmalloc(size_t bytes);
8
void shmfree(void *ptr);
9
10
#endif // SHALLOC_H_