mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Collect status from dead jobs and don't invoke the callback until both
all input (the socket is closed) and status is available.
This commit is contained in:
5
job.c
5
job.c
@ -105,6 +105,8 @@ job_add(struct jobs *jobs, struct client *c, const char *cmd,
|
||||
job->freefn = freefn;
|
||||
job->data = data;
|
||||
|
||||
job->flags = JOB_DONE;
|
||||
|
||||
RB_INSERT(jobs, jobs, job);
|
||||
SLIST_INSERT_HEAD(&all_jobs, job, lentry);
|
||||
|
||||
@ -133,8 +135,9 @@ job_run(struct job *job)
|
||||
{
|
||||
int nullfd, out[2], mode;
|
||||
|
||||
if (job->fd != -1)
|
||||
if (!(job->flags & JOB_DONE))
|
||||
return (0);
|
||||
job->flags &= ~JOB_DONE;
|
||||
|
||||
if (pipe(out) != 0)
|
||||
return (-1);
|
||||
|
Reference in New Issue
Block a user