• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef _GPXE_MONOJOB_H
2 #define _GPXE_MONOJOB_H
3 
4 /** @file
5  *
6  * Single foreground job
7  *
8  */
9 
10 FILE_LICENCE ( GPL2_OR_LATER );
11 
12 struct job_interface;
13 
14 extern struct job_interface monojob;
15 extern int monojob_wait ( const char *string );
16 
17 #endif /* _GPXE_MONOJOB_H */
18