Multiprocessing

This commit is contained in:
2026-02-09 12:52:53 +04:00
parent 6043cc0d5c
commit 8710577d42
4 changed files with 168 additions and 17 deletions

View File

@@ -26,10 +26,12 @@ typedef uint32_t vaddr_t;
#define va_end __builtin_va_end
#define va_arg __builtin_va_arg
#define PAGE_SIZE 4096
void *memset(void *buf, char c, size_t n);
void *memcpy(void *dst, const void *src, size_t n);
char *strcpy(char *dst, const char *src);
int strcmp(const char *s1, const char *s2);
void printf(const char *fmt, ...);
void printf(const char *fmt, ...);