summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/process.h
Commit message (Collapse)AuthorAgeFilesLines
* [build] Rename gPXE to iPXEMichael Brown2010-04-201-80/+0Star
| | | | | | | | | | | Access to the gpxe.org and etherboot.org domains and associated resources has been revoked by the registrant of the domain. Work around this problem by renaming project from gPXE to iPXE, and updating URLs to match. Also update README, LOG and COPYRIGHTS to remove obsolete information. Signed-off-by: Michael Brown <mcb30@ipxe.org>
* [process] Make it safe to call process_add() multiple timesMichael Brown2009-08-101-0/+1
|
* [legal] Add a selection of FILE_LICENCE declarationsMichael Brown2009-05-181-0/+2
| | | | | Add FILE_LICENCE declarations to almost all files that make up the various standard builds of gPXE.
* [tables] Incorporate table data type information into table definitionMichael Brown2009-03-131-3/+2Star
| | | | | | | Eliminate the potential for mismatches between table names and the table entry data type by incorporating the data type into the definition of the table, rather than specifying it explicitly in each table accessor method.
* [tables] Redefine methods for accessing linker tablesMichael Brown2009-03-131-1/+4
| | | | | | | | | | | | | | | Intel's C compiler (icc) chokes on the zero-length arrays that we currently use as part of the mechanism for accessing linker table entries. Abstract away the zero-length arrays, to make a port to icc easier. Introduce macros such as for_each_table_entry() to simplify the common case of iterating over all entries in a linker table. Represent table names as #defined string constants rather than unquoted literals; this avoids visual confusion between table names and C variable or type names, and also allows us to force a compilation error in the event of incorrect table names.
* Separated out initialisation functions from startup/shutdown functions.Michael Brown2007-07-041-1/+0Star
|
* Use a linker-table based system to automatically mark and start upMichael Brown2007-07-031-0/+11
| | | | | permanent processes, rather than requiring each one to have its own initialisation function.
* Modify process semantics; rescheduling is now automatic.Michael Brown2007-05-261-4/+37
| | | | | | Add reference-counting to processes. Add timer_running() test.
* Added basic code for implementing co-operative multitasking.Michael Brown2006-04-291-0/+32
Yes, you really can do it in 65 bytes.