job
struct job {
struct job {
typedef void (*job_update_cb) (struct job *);
typedef void (*job_complete_cb) (struct job *);
void job_free(struct job *);
int job_transfer(struct job *, pid_t *, char *, size_t);
void job_resize(struct job *, u_int, u_int);
int job_get_status(struct job *);
void *job_get_data(struct job *);
struct bufferevent *job_get_event(struct job *);
} job;
struct job {
struct job {