mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 01:48:47 +00:00
Sync OpenBSD patchset 494:
Add back JOB_PERSIST checks that got lost.
This commit is contained in:
parent
53ef4c2bab
commit
7851bb81f5
19
job.c
19
job.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: job.c,v 1.11 2009-11-08 22:56:04 tcunha Exp $ */
|
/* $Id: job.c,v 1.12 2009-11-08 22:56:54 tcunha Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -126,7 +126,6 @@ job_free(struct job *job)
|
|||||||
|
|
||||||
if (job->fd != -1)
|
if (job->fd != -1)
|
||||||
close(job->fd);
|
close(job->fd);
|
||||||
|
|
||||||
if (job->event != NULL)
|
if (job->event != NULL)
|
||||||
bufferevent_free(job->event);
|
bufferevent_free(job->event);
|
||||||
|
|
||||||
@ -201,8 +200,12 @@ job_callback(unused struct bufferevent *bufev, unused short events, void *data)
|
|||||||
close(job->fd);
|
close(job->fd);
|
||||||
job->fd = -1;
|
job->fd = -1;
|
||||||
|
|
||||||
if (job->pid == -1 && job->callbackfn != NULL)
|
if (job->pid == -1) {
|
||||||
job->callbackfn(job);
|
if (job->callbackfn != NULL)
|
||||||
|
job->callbackfn(job);
|
||||||
|
if ((!job->flags & JOB_PERSIST))
|
||||||
|
job_free(job);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Job died (waitpid() returned its pid). */
|
/* Job died (waitpid() returned its pid). */
|
||||||
@ -212,8 +215,12 @@ job_died(struct job *job, int status)
|
|||||||
job->status = status;
|
job->status = status;
|
||||||
job->pid = -1;
|
job->pid = -1;
|
||||||
|
|
||||||
if (job->fd == -1 && job->callbackfn != NULL)
|
if (job->fd == -1) {
|
||||||
job->callbackfn(job);
|
if (job->callbackfn != NULL)
|
||||||
|
job->callbackfn(job);
|
||||||
|
if ((!job->flags & JOB_PERSIST))
|
||||||
|
job_free(job);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Kill a job. */
|
/* Kill a job. */
|
||||||
|
Loading…
Reference in New Issue
Block a user