summaryrefslogtreecommitdiff
path: root/src/stacks.c
Commit message (Expand)AuthorAgeFilesLines
* Rename hw/cmos.h to hw/rtc.h and copy RTC code from clock.c to hw/rtc.c.Kevin O'Connor2013-09-281-2/+3
* Move function definitions for output.c from util.h to new file output.h.Kevin O'Connor2013-09-181-1/+2
* Move malloc code from pmm.c to new files malloc.c and malloc.h.Kevin O'Connor2013-09-181-0/+1
* Move stacks.c definitions from util.h to new file stacks.h.Kevin O'Connor2013-09-181-0/+1
* Add config option to support memory allocations in 9-segment.Kevin O'Connor2013-08-101-1/+2
* Convert stacks.c to use standard list manipulation code.Kevin O'Connor2013-06-081-17/+15
* Introduce helper function have_threads() in stacks.c.Kevin O'Connor2013-06-081-10/+12
* Minor - relocate code in stacks.c to keep low-level thread code together.Kevin O'Connor2013-06-081-52/+57
* Convert VAR16VISIBLE, VAR16EXPORT, and VAR32VISIBLE to VARFSEG.Kevin O'Connor2013-02-181-2/+2
* No need to check both CONFIG_THREADS and CONFIG_THREAD_OPTIONROMS.Kevin O'Connor2013-02-091-6/+4
* Fix winxp boot regression introduced in ecdc655a.Kevin O'Connor2012-06-021-1/+1
* Run all hardware irq handlers on the extra stack.Kevin O'Connor2012-05-301-2/+2
* Automatically hop off the extra stack when far calling 16bit code.Kevin O'Connor2012-05-281-4/+3
* Make the extra stack re-entrant and "hop back" to check for irqs.Kevin O'Connor2012-05-281-6/+52
* Replace 32bit->16bit farcall system with regular calls.Kevin O'Connor2012-05-281-59/+64
* Move farcall16 code from util.c to stacks.c and reorg stacks.c.Kevin O'Connor2012-05-281-97/+140
* Rename call16 to farcall16.Kevin O'Connor2012-05-281-2/+2
* Rename wait_irq to yield_toirq.Kevin O'Connor2012-05-281-1/+1
* Add mechanism to declare variables as "low mem" and use for extra stack.Kevin O'Connor2012-05-201-6/+9
* Run option rom visible PMM code in 32bit mode instead of 16bit mode.Kevin O'Connor2011-07-161-1/+1
* Simplify POST entry code by moving reboot logic from post.c to resume.c.Kevin O'Connor2011-07-101-5/+0
* Require a "_cfuncXX_" symbol prefix for inter-mode c function references.Kevin O'Connor2010-12-051-4/+2
* Enhance call32() to pass a parameter to called function.Kevin O'Connor2010-11-251-9/+9
* Don't pass return address to transition(32,16,16big) on stack.Kevin O'Connor2010-11-251-2/+2
* Cleanup - it's no longer necessary to manually reset global variables.Kevin O'Connor2010-09-251-11/+4
* Separate out init code from the rest of the 32bit flat code.Kevin O'Connor2010-09-151-2/+2
* Allow wait_irq to be called in 32bit code.Kevin O'Connor2010-05-231-10/+73
* Further parallelize init when using CONFIG_THREAD_OPTIONROMS.Kevin O'Connor2010-05-011-1/+3
* Some improvements to optionrom preemption support.Kevin O'Connor2010-04-021-7/+14
* Force use of indirect function calls in inline assembler.Kevin O'Connor2010-03-201-7/+6
* Don't move EBDA while an optionrom is running (CONFIG_THREAD_OPTIONROMS).Kevin O'Connor2010-03-201-0/+12
* Introduce simple "mutex" locking code.Kevin O'Connor2010-02-281-0/+20
* Be sure to add "void" to all function prototypes that take no args.Kevin O'Connor2010-01-031-10/+10
* Introduce MODESEGMENT define; rename VISIBLE32 to VISIBLE32FLAT.Kevin O'Connor2009-12-261-5/+5
* Fix yield() so it works from boot code.Kevin O'Connor2009-12-201-1/+4
* Extract out new call32() function from check_preempt() code in stacks.c.Kevin O'Connor2009-12-131-61/+72
* Enhance experimental option rom "threading" - enable preemption.Kevin O'Connor2009-12-131-13/+137
* Move stack manipulation code from util.c to new file stacks.c.Kevin O'Connor2009-12-101-0/+163