aboutsummaryrefslogtreecommitdiff
path: root/src/misc.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2009-12-13 11:25:25 -0500
committerKevin O'Connor <kevin@koconnor.net>2009-12-13 11:25:25 -0500
commitad901592515cf7eaddfb86f610919fd9479dd3da (patch)
tree7eda29fec6389e6a9e71c1f62257d3688ca7d56d /src/misc.c
parent2edace134c323e47c3ad23f4635deb3d14a556b3 (diff)
downloadseabios-hppa-ad901592515cf7eaddfb86f610919fd9479dd3da.zip
seabios-hppa-ad901592515cf7eaddfb86f610919fd9479dd3da.tar.gz
seabios-hppa-ad901592515cf7eaddfb86f610919fd9479dd3da.tar.bz2
Enhance experimental option rom "threading" - enable preemption.
When experimental support for parallelizing option roms and hardware init (default disabled) is selected, add support for checking on hardware init progress from the RTC irq handler. Enable ability for RTC to be turned on for additional users. Allow regular option roms (not just vga option roms) to run in parallel with hardware init. Don't use stack in transition32 / transition16 until new mode is entered. Also, cleanup leaking of data handlers in usb code. Also, decrease frequency of iomemcpy checks (every 2K instead of 1K).
Diffstat (limited to 'src/misc.c')
-rw-r--r--src/misc.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/misc.c b/src/misc.c
index b12e860..7d6e954 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -128,11 +128,6 @@ struct bios_config_table_s BIOS_CONFIG_TABLE VAR16FIXED(0xe6f5) = {
* GDT and IDT tables
****************************************************************/
-struct descloc_s {
- u16 length;
- u32 addr;
-} PACKED;
-
// Real mode IDT descriptor
struct descloc_s rmode_IDT_info VAR16VISIBLE = {
.length = sizeof(struct rmode_IVT) - 1,