mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-17 16:31:25 -07:00
16 lines
364 B
Odin
16 lines
364 B
Odin
//+private
|
|
//+build netbsd, openbsd, freebsd
|
|
package os2
|
|
|
|
import "base:runtime"
|
|
|
|
_process_info_by_pid :: proc(pid: int, selection: Process_Info_Fields, allocator: runtime.Allocator) -> (info: Process_Info, err: Error) {
|
|
err = .Unsupported
|
|
return
|
|
}
|
|
|
|
_process_list :: proc(allocator: runtime.Allocator) -> (list: []int, err: Error) {
|
|
err = .Unsupported
|
|
return
|
|
}
|