Implement process clone trampoline
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m10s

This commit is contained in:
2026-03-07 20:20:29 +01:00
parent bf99bedfc5
commit ab8856cf4b
9 changed files with 68 additions and 12 deletions

View File

@@ -10,7 +10,9 @@
static int ce_pgid;
void receiver (void) {
void receiver (void* arg) {
(void)arg;
for (;;) {
char recv[RECV_MAX];
memset (recv, 0, sizeof (recv));