summaryrefslogtreecommitdiff
path: root/nuttx/arch/x86
Commit message (Collapse)AuthorAgeFilesLines
* Update everything under nuttx/arch to use the corrected syslog interfacesGregory Nutt2014-10-082-16/+33
|
* A little more clean-up of poll() error handlingGregory Nutt2014-09-261-13/+13
|
* ELF relocations. Some relocation types do not have a named symbol ↵Gregory Nutt2014-09-091-2/+15
| | | | associated with them. The design did not account for that case
* The 'make export' target needs to bundle up the user C startup file (crt0), ↵Gregory Nutt2014-09-041-3/+4
| | | | not the kernel head object
* There used to be two ways to pass parameters to new tasks, depending upon ↵Gregory Nutt2014-09-012-1/+3
| | | | the configuration: Either (1) argv[] as created as an array with each string strdup'ed. Or (1) argv[] array and strings were created on the stack before the new task was started. Now, there is only one way, way (1). Way (2) might be slightly more compact, but this is not worth carry the complexity of two different ways of doing the same thing.
* Reanem kzalloc to kmm_zalloc for consistencyGregory Nutt2014-08-311-1/+1
|
* Rename kmalloc to kmm_malloc for consistencyGregory Nutt2014-08-311-1/+1
|
* Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency ↵Gregory Nutt2014-08-311-2/+2
| | | | with other naming
* Rename CONFIG_NUTTX_KERNEL to CONFIG_BUILD_PROTECTED; Partially integrate ↵Gregory Nutt2014-08-294-7/+7
| | | | new CONFIG_BUILD_KERNEL
* Fix an error introduced into ALL implmentations of interrupt dispatch logicGregory Nutt2014-08-281-1/+1
|
* Add address environment support to ALL implementatins of up_release_pending()Gregory Nutt2014-08-281-2/+14
|
* Add address environment support to ALL implementatins of up_reprioritize_rtr()Gregory Nutt2014-08-281-2/+14
|
* x86: Move address environment switch from the task switchers to the ↵Gregory Nutt2014-08-283-36/+41
| | | | interrupt handler. That may save doing the action multiple times per interrupt
* Add ADDRENV support to ALL implmentations of _exit()Gregory Nutt2014-08-271-1/+12
|
* Add ADDRENV support to ALL implementations of up_unblock_task()Gregory Nutt2014-08-271-2/+22
|
* Add ADDRENV support to all implementations of up_block_task()Gregory Nutt2014-08-271-1/+21
|
* Change naming of ELF interfaces from arch_ to up_ for consistencyGregory Nutt2014-08-251-7/+7
|
* Remove os_internal.h it has been replace by several new header files under ↵Gregory Nutt2014-08-083-3/+3
| | | | sched/. There have been some sneak inclusion paths via os_internal.h, so expect a few compilation errors for some architectures
* Replace os_internal.h with sched/sched.h in files that actually reference ↵Gregory Nutt2014-08-088-8/+8
| | | | something in sched.h
* Move task control files from sched/ to sched/taskGregory Nutt2014-08-081-3/+4
|
* Move clock functions from sched/ to sched/clockGregory Nutt2014-08-082-2/+2
|
* Change all time conversions. Yech. New timer units in microseconds breaks ↵Gregory Nutt2014-08-071-1/+1
| | | | all existing logic that used milliseconds in the conversions. Something likely got broken doing this, probably because I confused a MSEC2TICK conversion with a TICK2MSEC conversion. Also, the tickless OS no appears fully functional and passes the OS test on the simulator with no errors
* Rename up_timerinit() to up_timer_initailize(); Add prototypes for candidate ↵Gregory Nutt2014-08-064-5/+9
| | | | interfaces for the tickless OS; Don't build existing timer initialization logic if CONFIG_SCHED_TICKLESS is defined.
* Cosmetic changes to commentsGregory Nutt2014-07-292-8/+0
|
* Fix spelling, only one t in exitingGregory Nutt2014-04-271-1/+1
|
* More trailing whilespace removalGregory Nutt2014-04-1315-30/+30
|
* Make sure that there is one space after forGregory Nutt2014-04-122-4/+4
|
* Make sure that there is one space between while and conditionGregory Nutt2014-04-122-2/+2
|
* Make sure that there is one space between if and conditionGregory Nutt2014-04-121-2/+2
|
* mv ramlog.h and syslog.h to new include/nuttx/syslogGregory Nutt2014-04-101-1/+1
|
* Add option to dump buffered USB trace data on an assertionGregory Nutt2014-03-201-2/+27
|
* QEMU i486: Minor updates to VGA driverGregory Nutt2014-03-082-0/+9
|
* QEMU i486: New QEMU keyboard and VGA drivers from LizhuoyiGregory Nutt2014-03-082-0/+142
|
* QEMU i486: New QEMU keyboard and VGA drivers from LizhuoyiGregory Nutt2014-03-084-13/+871
|
* x86: fix 'Error: .size expression for idle_stack does not evaluate to a ↵Gregory Nutt2014-01-251-1/+1
| | | | constant' bug from Matt Campbell
* rename up_led*() functions to board_led_*()Gregory Nutt2014-01-247-21/+21
|
* X86: Add a configuration option to select the -m32 compiler option when neededGregory Nutt2014-01-181-3/+22
|
* LM: Don't initialize .data if running in SRAM. Global missing intialize ↵Gregory Nutt2013-12-051-1/+1
| | | | type. SAMA5 NAND: Fix for read nand in smaller chunks
* Extend stack debug logic to include IDLE and interrupt stacks. Also color ↵Gregory Nutt2013-11-012-3/+3
| | | | the heap as well. Based on suggestions from David Sidrane
* Clean up some naming: fd vs. fildes vs. filedes and filep vs filpGregory Nutt2013-09-281-3/+3
|
* Finally... renamed all CONFIG_DRAM_ settings to CONFIG_RAM_Gregory Nutt2013-07-262-2/+2
|
* Created new directories to hold SPI-related filesGregory Nutt2013-07-011-2/+2
|
* .dSYM only needs to be in the same .gitignore files as .exeGregory Nutt2013-05-301-1/+0
|
* Upate .gitignore files. Add .dSYM. Make sure / is present where needed. ↵Gregory Nutt2013-05-301-1/+1
| | | | Add some missing .gitignore files
* Remove up_assert_codeGregory Nutt2013-04-255-133/+102
|
* Adding missing registration of /dev/zero; Condition registration of ↵Gregory Nutt2013-04-241-0/+8
| | | | /dev/null. From Ken Petit
* _exit() should not call atexit() or on_exit() functions; Rename ↵Gregory Nutt2013-04-181-1/+1
| | | | task_deletecurrent() to task_exit()
* Move LPC17xx IOCON register definitions from lpc17_gpio.h to lpc17_iocon.h; ↵Gregory Nutt2013-04-042-7/+6
| | | | fix a few more .gitignore files
* Clone svn:ignore directory atributed to .gitignore filesGregory Nutt2013-04-042-0/+9
|
* Corrections needed after further test of stack-based task argumentspatacongo2013-03-211-3/+10
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5771 42af7a65-404d-4744-a932-0658087f49c3