fix bsds process_open

This commit is contained in:
Laytan
2024-10-04 13:52:44 +02:00
parent 31ee829b44
commit 424dc590a3
2 changed files with 1 additions and 1 deletions
+1
View File
@@ -15,6 +15,7 @@ _process_list :: proc(allocator: runtime.Allocator) -> (list: []int, err: Error)
}
_process_open :: proc(pid: int, flags: Process_Open_Flags) -> (process: Process, err: Error) {
process.pid = pid
err = .Unsupported
return
}