From 9ac1eda2988b6c7472a24817f4fd623de28a33f5 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 11 Jan 2021 19:24:45 +0100 Subject: Much work.. --- libc/inc/sys.h | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) (limited to 'libc') diff --git a/libc/inc/sys.h b/libc/inc/sys.h index aa91faf..e345ce8 100644 --- a/libc/inc/sys.h +++ b/libc/inc/sys.h @@ -20,7 +20,6 @@ enum sys { SYS_EXIT, // Exit current process // TODO: Free all memory of process SYS_YIELD, // Switch to next process SYS_TIME, // Get kernel time - SYS_GETPID, // Get the process ID SYS_NET_OPEN, // Open network socket SYS_NET_CLOSE, // Close network socket SYS_NET_CONNECT, // Connect to destination @@ -90,10 +89,33 @@ int sysv(enum sys num, ...); #define yield() (int)sys0(SYS_YIELD) #define time() (u32) sys0(SYS_TIME) -#define getpid() (int)sys0(SYS_GETPID) +static inline u32 getpid() +{ + u32 buf = 0; + read("/proc/self/pid", &buf, 0, sizeof(buf)); + return buf; +} -// Simple read wrapper +// Hacky, one-digit solution - TODO! #include +#include +static inline u32 pidof(const char *name) +{ + u32 curr = 1; + char buf[32] = { 0 }; + char *path = (char *)"/proc/1/name"; // AAH + while (read(path, buf, 0, 32)) { + if (!strcmp(name, buf)) + return curr; + + curr++; + path[7]++; + } + + return 0; +} + +// Simple read wrapper static inline void *sread(const char *path) { struct stat s = { 0 }; -- cgit v1.2.3