job.h revision 6091827530d6dd43479d6709fb6e9f745c11e900
/*-*- Mode: C; c-basic-offset: 8 -*-*/
#ifndef foojobhfoo
#define foojobhfoo
#include <stdbool.h>
#include <inttypes.h>
#include "manager.h"
#include "name.h"
#include "hashmap.h"
#include "list.h"
enum JobType {
JOB_TRY_RESTART, /* restart if running */
JOB_RESTART_FINISH, /* 2nd part of a restart, i.e. the actual starting */
};
typedef enum JobState {
} JobState;
enum JobMode {
};
struct Job {
bool linked:1;
};
#endif