Rename event pipes to broadcast pipes

This commit is contained in:
2025-09-09 17:52:19 +02:00
parent ab224eda8e
commit 1029db6342
6 changed files with 16 additions and 15 deletions

View File

@ -45,10 +45,11 @@ typedef struct Proc {
VfsObj *vobjs[PROC_VFSHANDLES_MAX];
uint64_t vobjcnt;
IpcPipe *pipes[PROC_PIPEHANDLES_MAX];
IpcPipe *eventpipes;
SpinLock eventpipes_spinlock;
struct {
IpcPipe *list;
SpinLock spinlock;
} bcast_pipes;
} Proc;
typedef struct {