mu/kernel.soso/sharedmemory.h
Kartik Agaram 46bb1d3157 5650 - support a second OS: soso
https://github.com/ozkl/soso

+ Much smaller than Linux; builds instantly
+ Supports graphics
- No network support
- Doesn't work on a cloud server (yet?)
2019-09-14 01:45:55 -07:00

13 lines
294 B
C

#ifndef SHAREDMEMORY_H
#define SHAREDMEMORY_H
#include "common.h"
#include "fs.h"
void initializeSharedMemory();
FileSystemNode* createSharedMemory(const char* name);
void destroySharedMemory(const char* name);
FileSystemNode* getSharedMemoryNode(const char* name);
#endif // SHAREDMEMORY_H