From 29e130ace0f7ec25dbb5914cac763d67d0a886a3 Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Wed, 3 May 2023 10:26:28 -0700 Subject: [PATCH] Removed arguments array for friends/tasks --- src/devices/system.c | 43 +++++++++++++++++++------------------------ src/devices/system.h | 1 + 2 files changed, 20 insertions(+), 24 deletions(-) diff --git a/src/devices/system.c b/src/devices/system.c index c3e6f1e..df4c4ba 100644 --- a/src/devices/system.c +++ b/src/devices/system.c @@ -78,38 +78,39 @@ system_inspect(Uxn *u) /* Friends */ Uint8 *global_ram; -Uint16 friends_tasks[0x80]; -pthread_t friends[0x80]; +Uint16 friends_tasks[MAX_FRIENDS]; +pthread_t friends[MAX_FRIENDS]; int friends_count = 0; -int friends_args[0x80]; void * -friend_task(void *x) +friend_task(void *vector) { Uxn friend; uxn_boot(&friend, global_ram); - uxn_eval(&friend, friends_tasks[*((int *)x)]); + uxn_eval(&friend, *((Uint16 *)vector)); return NULL; } int -spawn_friend(Uint16 task) -{ - if(friends_count >= 0x80) - return system_error("friends", "Too many threads"); - friends_args[friends_count] = friends_count; - friends_tasks[friends_count] = task; - pthread_create(&friends[friends_count], NULL, friend_task, (void *)&friends_args[friends_count]); - return friends_count++; -} - -void wait_friends(void) { int i; for(i = 0; i < friends_count; ++i) pthread_join(friends[i], NULL); - friends_count = 0; + return friends_count = 0; +} + +int +spawn_friend(Uint8 *ram, Uint16 task) +{ + if(!task) + return wait_friends(); + if(friends_count >= MAX_FRIENDS) + return system_error("friends", "Too many threads"); + global_ram = ram; + friends_tasks[friends_count] = task; + pthread_create(&friends[friends_count], NULL, friend_task, (void *)&friends_tasks[friends_count]); + return friends_count++; } /* IO */ @@ -117,18 +118,12 @@ wait_friends(void) void system_deo(Uxn *u, Uint8 *d, Uint8 port) { - Uint16 v; switch(port) { case 0x3: system_cmd(u->ram, PEEK2(d + 2)); break; case 0x5: - v = PEEK2(d + 4); - global_ram = u->ram; - if(v) - spawn_friend(v); - else - wait_friends(); + spawn_friend(u->ram, PEEK2(d + 4)); break; case 0xe: system_inspect(u); diff --git a/src/devices/system.h b/src/devices/system.h index 9059736..8d521c0 100644 --- a/src/devices/system.h +++ b/src/devices/system.h @@ -10,6 +10,7 @@ WITH REGARD TO THIS SOFTWARE. */ #define RAM_PAGES 0x10 +#define MAX_FRIENDS 0x10 #define CONSOLE_STD 0x1 #define CONSOLE_ARG 0x2