summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorMichael Brown2007-07-03 21:09:14 +0200
committerMichael Brown2007-07-03 21:09:14 +0200
commitfd86c819ba559760b9bf7eaca1b21a0fd81ef6b6 (patch)
treeba4c0aa4612bed0a66d420a93356df09316214e0 /src/core
parentMerge branch 'master' of /pub/scm/gpxe (diff)
downloadipxe-fd86c819ba559760b9bf7eaca1b21a0fd81ef6b6.tar.gz
ipxe-fd86c819ba559760b9bf7eaca1b21a0fd81ef6b6.tar.xz
ipxe-fd86c819ba559760b9bf7eaca1b21a0fd81ef6b6.zip
Use a linker-table based system to automatically mark and start up
permanent processes, rather than requiring each one to have its own initialisation function.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/main.c5
-rw-r--r--src/core/process.c18
2 files changed, 22 insertions, 1 deletions
diff --git a/src/core/main.c b/src/core/main.c
index 64e098ca3..5b01df9cc 100644
--- a/src/core/main.c
+++ b/src/core/main.c
@@ -16,6 +16,7 @@ Literature dealing with the network protocols:
#include <gpxe/heap.h>
#include <gpxe/init.h>
+#include <gpxe/process.h>
#include <gpxe/device.h>
#include <gpxe/shell.h>
#include <gpxe/shell_banner.h>
@@ -29,8 +30,10 @@ Literature dealing with the network protocols:
* Call this function only once, before doing (almost) anything else.
*/
static void startup ( void ) {
- hide_etherboot();
init_heap();
+ init_processes();
+
+ hide_etherboot();
call_init_fns();
probe_devices();
}
diff --git a/src/core/process.c b/src/core/process.c
index 0583a398c..bd35e614f 100644
--- a/src/core/process.c
+++ b/src/core/process.c
@@ -30,6 +30,12 @@
/** Process run queue */
static LIST_HEAD ( run_queue );
+/** Registered permanent processes */
+static struct process processes[0]
+ __table_start ( struct process, processes );
+static struct process processes_end[0]
+ __table_end ( struct process, processes );
+
/**
* Add process to process list
*
@@ -72,3 +78,15 @@ void step ( void ) {
break;
}
}
+
+/**
+ * Initialise processes
+ *
+ */
+void init_processes ( void ) {
+ struct process *process;
+
+ for ( process = processes ; process < processes_end ; process++ ) {
+ process_add ( process );
+ }
+}