aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2007-06-28 01:09:45 +0100
committerMichael Brown <mcb30@etherboot.org>2007-06-28 01:09:45 +0100
commit73fe1ba9ddbdd56bff220c01311280a0d73b0584 (patch)
treeeb5fe5ce43e5497f3264ed6fe570ef47805255df /src/include
parent07dc294de8e984b450297037b53ac33b038dcd7b (diff)
downloadipxe-73fe1ba9ddbdd56bff220c01311280a0d73b0584.zip
ipxe-73fe1ba9ddbdd56bff220c01311280a0d73b0584.tar.gz
ipxe-73fe1ba9ddbdd56bff220c01311280a0d73b0584.tar.bz2
Kill off job::start() (it was only ever added as part of an aborted
attempt at triggering TCP-related protocols to start).
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gpxe/job.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/include/gpxe/job.h b/src/include/gpxe/job.h
index 2888586..3190fa2 100644
--- a/src/include/gpxe/job.h
+++ b/src/include/gpxe/job.h
@@ -33,11 +33,6 @@ struct job_interface;
/** Job control interface operations */
struct job_interface_operations {
- /** Start job
- *
- * @v job Job control interface
- */
- void ( * start ) ( struct job_interface *job );
/** Job completed
*
* @v job Job control interface
@@ -71,7 +66,6 @@ extern struct job_interface_operations null_job_ops;
extern void job_done ( struct job_interface *job, int rc );
-extern void ignore_job_start ( struct job_interface *job );
extern void ignore_job_done ( struct job_interface *job, int rc );
extern void ignore_job_kill ( struct job_interface *job );
extern void ignore_job_progress ( struct job_interface *job,