diff options
| author | Michael Brown | 2007-06-28 15:53:12 +0200 |
|---|---|---|
| committer | Michael Brown | 2007-06-28 15:53:12 +0200 |
| commit | 6209d20779b48e19213715fecf3bc7014de8c401 (patch) | |
| tree | dee50c5d38016026e311e6cec50cdac2207e642e /src/include/gpxe/monojob.h | |
| parent | Forgot to set initial session state. Now works! (diff) | |
| download | ipxe-6209d20779b48e19213715fecf3bc7014de8c401.tar.gz ipxe-6209d20779b48e19213715fecf3bc7014de8c401.tar.xz ipxe-6209d20779b48e19213715fecf3bc7014de8c401.zip | |
Added monojob controller in lieu of a full working shell.
Diffstat (limited to 'src/include/gpxe/monojob.h')
| -rw-r--r-- | src/include/gpxe/monojob.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/include/gpxe/monojob.h b/src/include/gpxe/monojob.h new file mode 100644 index 000000000..f6cebb6b8 --- /dev/null +++ b/src/include/gpxe/monojob.h @@ -0,0 +1,15 @@ +#ifndef _GPXE_MONOJOB_H +#define _GPXE_MONOJOB_H + +/** @file + * + * Single foreground job + * + */ + +struct job_interface; + +extern struct job_interface monojob; +extern int monojob_wait ( void ); + +#endif /* _GPXE_MONOJOB_H */ |
