aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Davidson <colrdavidson@gmail.com>2025-07-29 12:12:15 -0700
committerColin Davidson <colrdavidson@gmail.com>2025-07-29 12:12:15 -0700
commitc1b3d035e4be4bdbebb397035a95e6dbc60f1bd6 (patch)
treefcb6ffa3f9a90e8889f1111067ce68e9d12fa841
parent0a102bd757fb0a5871a00a28db6d46cf025bb8d0 (diff)
remove spawn from os, comment sys/posix/spawn
-rw-r--r--core/os/os_darwin.odin35
-rw-r--r--core/sys/posix/spawn.odin8
2 files changed, 8 insertions, 35 deletions
diff --git a/core/os/os_darwin.odin b/core/os/os_darwin.odin
index a27add029..1010d27a8 100644
--- a/core/os/os_darwin.odin
+++ b/core/os/os_darwin.odin
@@ -7,10 +7,8 @@ foreign import pthread "system:System"
import "base:runtime"
import "core:strings"
import "core:c"
-import "core:sys/posix"
Handle :: distinct i32
-Pid :: distinct i32
File_Time :: distinct u64
INVALID_HANDLE :: ~Handle(0)
@@ -679,39 +677,6 @@ get_last_error_string :: proc() -> string {
return string(_darwin_string_error(__error()^))
}
-_spawn :: #force_inline proc(path: string, args: []string, envs: []string, file_actions: rawptr, attributes: rawptr, is_spawnp: bool) -> (posix.pid_t, Error) {
- runtime.DEFAULT_TEMP_ALLOCATOR_TEMP_GUARD()
- path_cstr := strings.clone_to_cstring(path, context.temp_allocator)
-
- args_cstrs := make([]cstring, len(args) + 2, context.temp_allocator)
- args_cstrs[0] = strings.clone_to_cstring(path, context.temp_allocator)
- for i := 0; i < len(args); i += 1 {
- args_cstrs[i+1] = strings.clone_to_cstring(args[i], context.temp_allocator)
- }
-
- envs_cstrs := make([]cstring, len(envs) + 1, context.temp_allocator)
- for i := 0; i < len(envs); i += 1 {
- envs_cstrs[i] = strings.clone_to_cstring(envs[i], context.temp_allocator)
- }
-
- child_pid: posix.pid_t
- status: posix.Errno
- if is_spawnp {
- status = posix.posix_spawnp(&child_pid, path_cstr, file_actions, attributes, raw_data(args_cstrs), raw_data(envs_cstrs))
- } else {
- status = posix.posix_spawn(&child_pid, path_cstr, file_actions, attributes, raw_data(args_cstrs), raw_data(envs_cstrs))
- }
- if status != .NONE {
- return 0, Platform_Error(status)
- }
- return child_pid, nil
-}
-spawn :: proc(path: string, args: []string, envs: []string, file_actions: rawptr, attributes: rawptr) -> (posix.pid_t, Error) {
- return _spawn(path, args, envs, file_actions, attributes, false)
-}
-spawnp :: proc(path: string, args: []string, envs: []string, file_actions: rawptr, attributes: rawptr) -> (posix.pid_t, Error) {
- return _spawn(path, args, envs, file_actions, attributes, true)
-}
@(require_results)
open :: proc(path: string, flags: int = O_RDONLY, mode: int = 0) -> (handle: Handle, err: Error) {
diff --git a/core/sys/posix/spawn.odin b/core/sys/posix/spawn.odin
index 8933915be..584201bcf 100644
--- a/core/sys/posix/spawn.odin
+++ b/core/sys/posix/spawn.odin
@@ -7,6 +7,14 @@ when ODIN_OS == .Darwin {
}
foreign lib {
+ /*
+ Creates a child process from a provided filepath
+ spawnp searches directories on the path for the file
+
+ Returns: 0 on success, with the child pid returned in the pid argument, or error values on failure.
+
+ [[ More; https://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_spawn.html ]]
+ */
posix_spawn :: proc(pid: ^pid_t, path: cstring, file_actions: rawptr, attrp: rawptr, argv: [^]cstring, envp: [^]cstring) -> Errno ---
posix_spawnp :: proc(pid: ^pid_t, file: cstring, file_actions: rawptr, attrp: rawptr, argv: [^]cstring, envp: [^]cstring) -> Errno ---
}