blob: 1661d91c2ed3093e9c2dcdba12b1375168f84569 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _IPXE_MONOJOB_H
#define _IPXE_MONOJOB_H
/** @file
*
* Single foreground job
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
struct interface;
extern struct interface monojob;
extern int monojob_wait ( const char *string, unsigned long timeout );
#endif /* _IPXE_MONOJOB_H */
|