summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorMichael Brown2007-07-15 00:16:01 +0200
committerMichael Brown2007-07-15 00:16:01 +0200
commit7e3a8f5e10c62d529bf6ba880352817a3c967dc6 (patch)
treebe845f4ff9f20d9edab2e712a95688b52a59fe41 /src/core
parentOn advice of hpa: be more patient with the KBC and SCPA methods; retry (diff)
downloadipxe-7e3a8f5e10c62d529bf6ba880352817a3c967dc6.tar.gz
ipxe-7e3a8f5e10c62d529bf6ba880352817a3c967dc6.tar.xz
ipxe-7e3a8f5e10c62d529bf6ba880352817a3c967dc6.zip
Remove more obsolete files
Diffstat (limited to 'src/core')
-rw-r--r--src/core/background.c49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/core/background.c b/src/core/background.c
deleted file mode 100644
index e0dceaef3..000000000
--- a/src/core/background.c
+++ /dev/null
@@ -1,49 +0,0 @@
-#include "background.h"
-
-static struct background backgrounds[0]
- __table_start ( struct background, background );
-static struct background backgrounds_end[0]
- __table_end ( struct background, background );
-
-/** @file */
-
-/**
- * Call send method of all background protocols
- *
- * @v timestamp Current time
- * @ret None -
- * @err None -
- *
- * This calls each background protocol's background::send() method.
- */
-void background_send ( unsigned long timestamp ) {
- struct background *background;
-
- for ( background = backgrounds ; background < backgrounds_end ;
- background++ ) {
- if ( background->send )
- background->send ( timestamp );
- }
-}
-
-/**
- * Call process method of all background protocols
- *
- * @v timestamp Current time
- * @v ptype Packet type
- * @v ip IP header, if present
- * @ret None -
- * @err None -
- *
- * This calls each background protocol's background::process() method.
- */
-void background_process ( unsigned long timestamp, unsigned short ptype,
- struct iphdr *ip ) {
- struct background *background;
-
- for ( background = backgrounds ; background < backgrounds_end ;
- background++ ) {
- if ( background->process )
- background->process ( timestamp, ptype, ip );
- }
-}