From 15003d1b0abccc8bcef84386c4a6da176e41f883 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Sun, 9 Jun 2024 22:05:53 +0200 Subject: Add UDP --- kernel/syscalls/open_process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kernel/syscalls') 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; -- cgit v1.2.3