aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMarvin Borner2021-02-14 17:07:29 +0100
committerMarvin Borner2021-02-14 17:07:29 +0100
commit1287f9dfe987f0456e4fb0741385d5f0278ef53b (patch)
tree64d3da484a4d186a725779f20d339432d51f441a /libc
parentbc4e62f629a392e1a4cf204665e91c57f4e619b2 (diff)
Message waiting and more!
Diffstat (limited to 'libc')
-rw-r--r--libc/inc/assert.h7
-rw-r--r--libc/inc/mem.h6
-rw-r--r--libc/inc/sys.h21
-rw-r--r--libc/mem.c30
4 files changed, 28 insertions, 36 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
diff --git a/libc/mem.c b/libc/mem.c
index 50b8cab..e9c6b8e 100644
--- a/libc/mem.c
+++ b/libc/mem.c
@@ -361,20 +361,31 @@ void _free(void *ptr)
#endif
+#ifdef kernel
+#define PREFIX "K"
+#define FUNC printf
+#else
+#define PREFIX "U"
+#define FUNC log
+#endif
+
+void *zalloc(u32 size)
+{
+ void *ret = malloc(size);
+ memset(ret, 0, size);
+ return ret;
+}
+
void *malloc_debug(u32 size, const char *file, int line, const char *func, const char *inp)
{
+ assert(size < (100 << 20)); // Don't brag with memory pls
void *ret = _malloc(size);
(void)file;
(void)line;
(void)func;
(void)inp;
- /* #ifdef kernel */
- /* printf("K"); */
- /* #else */
- /* printf("U"); */
- /* #endif */
- /* printf("MALLOC\t%s:%d: %s: 0x%x %dB (%s)\n", file, line, func, ret, size, inp); */
+ /* FUNC(PREFIX "MALLOC\t%s:%d: %s: 0x%x %dB (%s)\n", file, line, func, ret, size, inp); */
return ret;
}
@@ -387,10 +398,5 @@ void free_debug(void *ptr, const char *file, int line, const char *func, const c
(void)line;
(void)func;
(void)inp;
- /* #ifdef kernel */
- /* printf("K"); */
- /* #else */
- /* printf("U"); */
- /* #endif */
- /* printf("FREE\t%s:%d: %s: 0x%x (%s)\n", file, line, func, ptr, inp); */
+ /* FUNC(PREFIX "FREE\t%s:%d: %s: 0x%x (%s)\n", file, line, func, ptr, inp); */
}