fix(net): improve network stability and resource management

This commit is contained in:
boreddevnl
2026-05-10 21:56:23 +02:00
parent 2d40ca30af
commit 6784b2139f
6 changed files with 152 additions and 132 deletions

View File

@@ -118,6 +118,7 @@ typedef struct __attribute__((packed)) {
// Loads the ELF executable at 'path' using fat32 into the pagemap given by user_pml4.
// Returns entry point address on success, or 0 on failure.
uint64_t elf_load(const char *path, uint64_t user_pml4, size_t *out_load_size);
struct process;
uint64_t elf_load(const char *path, uint64_t user_pml4, size_t *out_load_size, struct process *proc);
#endif