mc/src/background.h

37 lines
717 B
C
Raw Normal View History

/** \file background.h
* \brief Header: Background support
*/
#ifndef MC_BACKGROUND_H
#define MC_BACKGROUND_H
1998-02-27 07:54:42 +03:00
#ifdef WITH_BACKGROUND
1998-02-27 07:54:42 +03:00
enum TaskState {
Task_Running,
Task_Stopped
};
typedef struct TaskList {
int fd;
1998-02-27 07:54:42 +03:00
pid_t pid;
int state;
char *info;
1998-02-27 07:54:42 +03:00
struct TaskList *next;
} TaskList;
extern struct TaskList *task_list;
struct FileOpContext;
int do_background (struct FileOpContext *ctx, char *info);
int parent_call (void *routine, struct FileOpContext *ctx, int argc, ...);
char *parent_call_string (void *routine, int argc, ...);
1998-02-27 07:54:42 +03:00
void unregister_task_running (pid_t pid, int fd);
extern int we_are_background;
1998-02-27 07:54:42 +03:00
#endif /* !WITH_BACKGROUND */
1998-02-27 07:54:42 +03:00
#endif /* MC_BACKGROUND_H */