Efl.Io.Closer.close_on_exec

Description

If true will automatically close resources on exec() calls.

When using file descriptors this should set FD_CLOEXEC so they are not inherited by the processes (children or self) doing exec().

Since 1.22

Values

  • close_on_exec - true if close on exec(), false otherwise

Setter

If true, will close on exec() call.

Since 1.22

Signature

@property close_on_exec @pure_virtual {
    get {}
    set {
        return: bool;
    }
    values {
        close_on_exec: bool;
    }
}

C signature

Eina_Bool efl_io_closer_close_on_exec_get(const Eo *obj);
Eina_Bool efl_io_closer_close_on_exec_set(Eo *obj, Eina_Bool close_on_exec);

Implemented by