diff options
author | Anton Kling <anton@kling.gg> | 2024-06-09 22:05:53 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-06-09 22:05:53 +0200 |
commit | 15003d1b0abccc8bcef84386c4a6da176e41f883 (patch) | |
tree | d4f8c4f1602ee9e6c4332f3b0585d0e284d0f695 /kernel/syscalls | |
parent | ddd796325c9c703f007f046ed9f6fd9eb0ba6383 (diff) |
Add UDP
Diffstat (limited to 'kernel/syscalls')
-rw-r--r-- | kernel/syscalls/open_process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/syscalls/open_process.c b/kernel/syscalls/open_process.c index 8e3a35e..2acc744 100644 --- a/kernel/syscalls/open_process.c +++ b/kernel/syscalls/open_process.c @@ -19,7 +19,7 @@ int syscall_open_process(int pid) { process /*internal_object*/, 0 /*file_size*/, NULL /*open*/, NULL /*create_file*/, NULL /*read*/, NULL /*write*/, NULL /*close*/, NULL /*create_directory*/, NULL /*get_vm_object*/, NULL /*truncate*/, - NULL /*stat*/, process_signal); + NULL /*stat*/, process_signal, NULL /*connect*/); int rc = vfs_create_fd(0, 0, 0, inode, NULL); assert(rc >= 0); return rc; |