aboutsummaryrefslogtreecommitdiff
path: root/libc/inc
diff options
context:
space:
mode:
authorMarvin Borner2021-03-21 00:13:13 +0100
committerMarvin Borner2021-03-21 00:13:13 +0100
commit68a0ad7f21ba07b93cd63613996e27afd8780f9c (patch)
tree1fb7ff055743737ab5903d81507ea4732e45e095 /libc/inc
parent535018ae7247ede06606e4d8aced2d12c761f28f (diff)
Added basic shared memory support
This will be improved soon. It's very insecure right now.
Diffstat (limited to 'libc/inc')
-rw-r--r--libc/inc/sys.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/libc/inc/sys.h b/libc/inc/sys.h
index 46a5849..a06a792 100644
--- a/libc/inc/sys.h
+++ b/libc/inc/sys.h
@@ -16,6 +16,8 @@
enum sys {
SYS_LOOP, // To infinity and beyond (debug)!
SYS_ALLOC, // Allocate memory
+ SYS_SHALLOC, // Allocate shared memory
+ SYS_SHACCESS, // Access shared memory
SYS_FREE, // Free memory
SYS_STAT, // Get file information
SYS_READ, // Read file
@@ -27,11 +29,11 @@ enum sys {
SYS_BOOT, // Boot functions (e.g. reboot/shutdown)
SYS_YIELD, // Switch to next process
SYS_TIME, // Get kernel time
- SYS_NET_OPEN, // Open network socket
- SYS_NET_CLOSE, // Close network socket
- SYS_NET_CONNECT, // Connect to destination
- SYS_NET_SEND, // Send to socket
- SYS_NET_RECEIVE, // Receive data from socket
+ /* SYS_NET_OPEN, // Open network socket */
+ /* SYS_NET_CLOSE, // Close network socket */
+ /* SYS_NET_CONNECT, // Connect to destination */
+ /* SYS_NET_SEND, // Send to socket */
+ /* SYS_NET_RECEIVE, // Receive data from socket */
};
struct event_keyboard {
@@ -76,6 +78,8 @@ s32 boot(u32 cmd);
u32 time(void);
void *sys_alloc(u32 size);
+u32 shalloc(u32 size);
+void *shaccess(u32 id);
void sys_free(void *ptr, u32 size);
static inline u32 getpid(void)