X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fexecute.h;h=a9075fe0eb6d7541bbd2a592f8697492dc765833;hb=71a6f7538199f571b92e0c9fbb5819f8ce0e0d20;hp=aa5f56667759ecd521d6244c28b57be669a75293;hpb=b58b41160fde88a82cba1ddec4be7dfb08825e35;p=elogind.git diff --git a/src/execute.h b/src/execute.h index aa5f56667..a9075fe0e 100644 --- a/src/execute.h +++ b/src/execute.h @@ -95,7 +95,7 @@ struct ExecContext { cpu_set_t *cpuset; unsigned cpuset_ncpus; - unsigned long timer_slack_ns; + unsigned long timer_slack_nsec; ExecInput std_input; ExecOutput std_output; @@ -103,7 +103,7 @@ struct ExecContext { int syslog_priority; char *syslog_identifier; - bool syslog_no_prefix; + bool syslog_level_prefix; char *tcpwrap_name; @@ -135,14 +135,14 @@ struct ExecContext { bool nice_set:1; bool ioprio_set:1; bool cpu_sched_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; + 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);