diff options
Diffstat (limited to 'libc/inc')
-rw-r--r-- | libc/inc/assert.h | 7 | ||||
-rw-r--r-- | libc/inc/mem.h | 6 | ||||
-rw-r--r-- | libc/inc/sys.h | 21 |
3 files changed, 10 insertions, 24 deletions
diff --git a/libc/inc/assert.h b/libc/inc/assert.h index e42fc5a..3656c33 100644 --- a/libc/inc/assert.h +++ b/libc/inc/assert.h @@ -18,12 +18,9 @@ __asm__ volatile("cli\nhlt"); \ } #elif defined(userspace) -#include <sys.h> #define assert(exp) \ - if (!(exp)) { \ - printf("%s:%d: %s: Assertion '%s' failed\n", __FILE__, __LINE__, __func__, #exp); \ - exit(1); \ - } + if (!(exp)) \ + err(1, "%s:%d: %s: Assertion '%s' failed\n", __FILE__, __LINE__, __func__, #exp); #else #error "No lib target specified. Please use -Dkernel or -Duserspace" #endif diff --git a/libc/inc/mem.h b/libc/inc/mem.h index e35ee62..216b939 100644 --- a/libc/inc/mem.h +++ b/libc/inc/mem.h @@ -11,11 +11,7 @@ void *malloc_debug(u32 size, const char *file, int line, const char *func, const void free_debug(void *ptr, const char *file, int line, const char *func, const char *inp); #define malloc(size) malloc_debug(size, __FILE__, __LINE__, __func__, #size) #define free(ptr) free_debug(ptr, __FILE__, __LINE__, __func__, #ptr) - -/* void *_malloc(u32 size); */ -/* void _free(void *ptr); */ -/* #define malloc(size) _malloc(size) */ -/* #define free(ptr) _free(ptr) */ +void *zalloc(u32 size); #ifdef kernel void heap_init(u32 start); diff --git a/libc/inc/sys.h b/libc/inc/sys.h index d7e5e3d..e7fdcf0 100644 --- a/libc/inc/sys.h +++ b/libc/inc/sys.h @@ -28,12 +28,6 @@ enum sys { SYS_NET_RECEIVE, // Receive data from socket }; -struct message { - int src; - int type; - void *data; -}; - struct event_keyboard { int magic; int press; @@ -96,23 +90,22 @@ static inline u32 getpid() return buf; } -// Hacky one-digit solution - TODO! #include <mem.h> +#include <print.h> #include <str.h> 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; + char buf[32] = { 0 }, path[32] = { 0 }; + while (curr < 1000) { // Max pid?? + if (sprintf(path, "/proc/%d/name", curr) > 0 && read(path, buf, 0, 32) > 0) + if (!strcmp(name, buf)) + return curr; curr++; - path[7]++; } - return 0; + return -1; } // Simple read wrapper |