liblaunch: add task creation flags for use by fork and posix_spawn

This commit is contained in:
2026-05-30 10:09:14 +01:00
parent 3588bab1d7
commit d8d96777f2
3 changed files with 11 additions and 2 deletions
+2 -1
View File
@@ -25,7 +25,8 @@ enum launch_status {
};
enum launch_flags {
LAUNCH_F_NONE = 0,
LAUNCH_F_NONE = 0x00,
LAUNCH_F_CLONE_ALL_HANDLES = 0x01u,
};
struct launch_ctx;