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

21
kernel/ipc/pipe/pipe.h Normal file
View File

@ -0,0 +1,21 @@
#ifndef IPC_PIPE_PIPE_H_
#define IPC_PIPE_PIPE_H_
#include <stdint.h>
#include <stddef.h>
#include "rbuf/rbuf.h"
#include "spinlock/spinlock.h"
#define IPC_PIPE_MAX 0x1000
typedef struct {
RBuf rbuf;
SpinLock spinlock;
} IpcPipe;
int32_t ipc_pipeinit(IpcPipe *pipe);
void ipc_pipefree(IpcPipe *pipe);
int32_t ipc_pipewrite(IpcPipe *pipe, const uint8_t *const buffer, size_t n);
int32_t ipc_piperead(IpcPipe *pipe, uint8_t *const buffer, size_t n);
#endif // IPC_PIPE_PIPE_H_