X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fexecute.h;h=a9075fe0eb6d7541bbd2a592f8697492dc765833;hp=841670aa6d6fe623737d96501575495f861b3224;hb=4c90c122afc8589ed8260ae97ef64a44783463d3;hpb=6398320759ce4ed84922bb28f715d3c6c66166c4 diff --git a/src/execute.h b/src/execute.h index 841670aa6..a9075fe0e 100644 --- a/src/execute.h +++ b/src/execute.h @@ -93,8 +93,9 @@ struct ExecContext { int cpu_sched_policy; int cpu_sched_priority; - cpu_set_t cpu_affinity; - unsigned long timer_slack_ns; + cpu_set_t *cpuset; + unsigned cpuset_ncpus; + unsigned long timer_slack_nsec; ExecInput std_input; ExecOutput std_output; @@ -102,7 +103,7 @@ struct ExecContext { int syslog_priority; char *syslog_identifier; - bool syslog_no_prefix; + bool syslog_level_prefix; char *tcpwrap_name; @@ -134,15 +135,14 @@ struct ExecContext { bool nice_set:1; bool ioprio_set:1; bool cpu_sched_set:1; - bool cpu_affinity_set:1; - bool timer_slack_ns_set:1; + bool timer_slack_nsec_set:1; /* This is not exposed to the user but available * internally. We need it to make sure that whenever we spawn * /bin/mount it is run in the same process group as us so * that the autofs logic detects that it belongs to us and we * don't enter a trigger loop. */ - bool no_setsid:1; + bool same_pgrp; }; typedef enum ExitStatus { @@ -196,6 +196,7 @@ int exec_spawn(ExecCommand *command, char **environment, bool apply_permissions, bool apply_chroot, + bool apply_tty_stdin, bool confirm_spawn, struct CGroupBonding *cgroup_bondings, pid_t *ret); @@ -217,7 +218,8 @@ void exec_context_init(ExecContext *c); void exec_context_done(ExecContext *c); void exec_context_dump(ExecContext *c, FILE* f, const char *prefix); -void exec_status_fill(ExecStatus *s, pid_t pid, int code, int status); +void exec_status_start(ExecStatus *s, pid_t pid); +void exec_status_exit(ExecStatus *s, pid_t pid, int code, int status); void exec_status_dump(ExecStatus *s, FILE *f, const char *prefix); const char* exec_output_to_string(ExecOutput i);