all_jobs can be static.

pull/1450/merge
nicm 2018-08-23 18:39:12 +00:00
parent bceccc6b63
commit f38b5a1b58
1 changed files with 2 additions and 1 deletions

3
job.c
View File

@ -37,6 +37,7 @@ static void job_read_callback(struct bufferevent *, void *);
static void job_write_callback(struct bufferevent *, void *);
static void job_error_callback(struct bufferevent *, short, void *);
/* A single job. */
struct job {
enum {
JOB_RUNNING,
@ -62,7 +63,7 @@ struct job {
};
/* All jobs list. */
LIST_HEAD(joblist, job) all_jobs = LIST_HEAD_INITIALIZER(all_jobs);
static LIST_HEAD(joblist, job) all_jobs = LIST_HEAD_INITIALIZER(all_jobs);
/* Start a job running, if it isn't already. */
struct job *