mirror of
https://github.com/tmate-io/tmate.git
synced 2026-07-28 13:23:50 +00:00
Add back JOB_PERSIST checks that got lost.
This commit is contained in:
parent
4d6091379b
commit
abb728684b
1 changed files with 12 additions and 5 deletions
17
job.c
17
job.c
|
|
@ -127,7 +127,6 @@ job_free(struct job *job)
|
|||
|
||||
if (job->fd != -1)
|
||||
close(job->fd);
|
||||
|
||||
if (job->event != NULL)
|
||||
bufferevent_free(job->event);
|
||||
|
||||
|
|
@ -202,8 +201,12 @@ job_callback(unused struct bufferevent *bufev, unused short events, void *data)
|
|||
close(job->fd);
|
||||
job->fd = -1;
|
||||
|
||||
if (job->pid == -1 && job->callbackfn != NULL)
|
||||
job->callbackfn(job);
|
||||
if (job->pid == -1) {
|
||||
if (job->callbackfn != NULL)
|
||||
job->callbackfn(job);
|
||||
if ((!job->flags & JOB_PERSIST))
|
||||
job_free(job);
|
||||
}
|
||||
}
|
||||
|
||||
/* Job died (waitpid() returned its pid). */
|
||||
|
|
@ -213,8 +216,12 @@ job_died(struct job *job, int status)
|
|||
job->status = status;
|
||||
job->pid = -1;
|
||||
|
||||
if (job->fd == -1 && job->callbackfn != NULL)
|
||||
job->callbackfn(job);
|
||||
if (job->fd == -1) {
|
||||
if (job->callbackfn != NULL)
|
||||
job->callbackfn(job);
|
||||
if ((!job->flags & JOB_PERSIST))
|
||||
job_free(job);
|
||||
}
|
||||
}
|
||||
|
||||
/* Kill a job. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue