Description

Flags to customize process behavior.

Fields

  • none - No special flags.
  • group_leader - Process will be executed in its own session.
  • hide_io - All console IO will be hidden.

Signature

enum Efl.Exe_Flags {
    none: 0,
    group_leader: 1,
    hide_io: 4
}

C signature

typedef enum {
    EFL_EXE_FLAGS_NONE = 0,
    EFL_EXE_FLAGS_GROUP_LEADER = 1,
    EFL_EXE_FLAGS_HIDE_IO = 4
} Efl_Exe_Flags;