Simple IPC with pipes

This commit is contained in:
2025-09-06 11:47:01 +02:00
parent 643d692259
commit cd0e262e56
21 changed files with 312 additions and 17 deletions

9
ulib/system/ipcpipe.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef ULIB_SYSTEM_IPCPIPE_H_
#define ULIB_SYSTEM_IPCPIPE_H_
#include <stdint.h>
#include <stddef.h>
int32_t ipcpipe(uint64_t pid, uint64_t pipenum, uint64_t cmd, uint8_t *buffer, size_t len);
#endif // ULIB_SYSTEM_IPCPIPE_H_