summaryrefslogtreecommitdiff
path: root/nuttx/arch/rgmp
Commit message (Collapse)AuthorAgeFilesLines
* Move fs/fs.h to fs/inode/inode.h and some to fs/driver/driver.hGregory Nutt2014-09-291-1/+1
|
* Rename fs/fs_internal.h to fs/fs.hGregory Nutt2014-09-281-1/+1
|
* The 'make export' target needs to bundle up the user C startup file (crt0), ↵Gregory Nutt2014-09-041-2/+2
| | | | not the kernel head object
* There used to be two ways to pass parameters to new tasks, depending upon ↵Gregory Nutt2014-09-011-2/+0
| | | | 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-2/+2
|
* Rename kmalloc to kmm_malloc for consistencyGregory Nutt2014-08-313-4/+4
|
* Rename kfree to kmm_free for consistency with other naming conventionsGregory Nutt2014-08-314-6/+6
|
* Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency ↵Gregory Nutt2014-08-311-1/+1
| | | | with other naming
* Rename kufree to kumm_free for consistency with other namingGregory Nutt2014-08-311-1/+1
|
* Rename CONFIG_NUTTX_KERNEL to CONFIG_BUILD_PROTECTED; Partially integrate ↵Gregory Nutt2014-08-291-3/+3
| | | | new CONFIG_BUILD_KERNEL
* Add address environment support to ALL implementatins of up_release_pending()Gregory Nutt2014-08-281-0/+8
|
* Add address environment support to ALL implementatins of up_reprioritize_rtr()Gregory Nutt2014-08-281-0/+9
|
* Add ADDRENV support to ALL implmentations of _exit()Gregory Nutt2014-08-271-0/+10
|
* Add ADDRENV support to ALL implementations of up_unblock_task()Gregory Nutt2014-08-271-0/+12
|
* Add ADDRENV support to all implementations of up_block_task()Gregory Nutt2014-08-271-1/+11
|
* Remove os_internal.h it has been replace by several new header files under ↵Gregory Nutt2014-08-082-2/+0
| | | | 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-082-2/+2
| | | | something in sched.h
* Move task control files from sched/ to sched/taskGregory Nutt2014-08-081-2/+3
|
* 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
* Change CONFIG_MSEC_PER_TICK to CONFIG_USEC_PER_TICK. This gives more ↵Gregory Nutt2014-08-071-2/+4
| | | | options for system timers in general, but more importantly, let's us realize higher resolution for the case of CONFIG_SCHED_TICKLESS=y -- of course, at the risk of some new interger overvflow problems
* Add serial method so that lower half driver can provide RX flow control ↵Gregory Nutt2014-05-081-0/+3
| | | | information. From Jussi Kivilinna
* More trailing whilespace removalGregory Nutt2014-04-138-18/+18
|
* Make sure that there is one space between while and conditionGregory Nutt2014-04-121-3/+4
|
* configs/rgmp/x86/default: Configuration converted to use the ↵Gregory Nutt2014-03-061-2/+18
| | | | kconfig-frontends tools
* 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
* Clean up some naming: fd vs. fildes vs. filedes and filep vs filpGregory Nutt2013-09-281-10/+10
|
* .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-251-17/+0
|
* _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-8/+6
| | | | fix a few more .gitignore files
* Clone svn:ignore directory atributed to .gitignore filesGregory Nutt2013-04-042-0/+10
|
* Corrections needed after further test of stack-based task argumentspatacongo2013-03-211-0/+6
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5771 42af7a65-404d-4744-a932-0658087f49c3
* Add a up_stack_frame() interface to allocate a frame of data on a task's stack.patacongo2013-03-211-0/+25
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5768 42af7a65-404d-4744-a932-0658087f49c3
* In the kernel build, allocate the stacks for kernel threads from the kernel ↵patacongo2013-03-201-154/+179
| | | | | | heap so that they are protected from medddling by the applications git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5766 42af7a65-404d-4744-a932-0658087f49c3
* Change prototypes of up_create_stack and up_release_stack to include a task ↵patacongo2013-03-201-2/+2
| | | | | | type parameter git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5765 42af7a65-404d-4744-a932-0658087f49c3
* Create sched_ufree and sched_kfree from sched_free; Use user-accessible heap ↵patacongo2013-03-101-2/+2
| | | | | | to allocae stacks git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5725 42af7a65-404d-4744-a932-0658087f49c3
* More changes for a kernel-mode allocator (more to be done)patacongo2013-03-091-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5724 42af7a65-404d-4744-a932-0658087f49c3
* Rename _TCB to struct tcb_spatacongo2013-02-045-28/+28
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5610 42af7a65-404d-4744-a932-0658087f49c3
* Patches from Petteri Aimonen + stdbool and rand() changes for Freddie Chopinpatacongo2012-12-071-9/+9
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5415 42af7a65-404d-4744-a932-0658087f49c3
* Missing comma in EVERY DELFILE/DELDIR macro call in every Makefilepatacongo2012-11-201-6/+6
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5373 42af7a65-404d-4744-a932-0658087f49c3
* Most of the changes needed to support Windows native clean; distclean is has ↵patacongo2012-11-171-4/+6
| | | | | | a problem git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5367 42af7a65-404d-4744-a932-0658087f49c3
* Move some (hopefully) un-necessary quotes in Makefiles for Mikepatacongo2012-11-151-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5356 42af7a65-404d-4744-a932-0658087f49c3
* A few more build fixespatacongo2012-11-121-2/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5340 42af7a65-404d-4744-a932-0658087f49c3
* Correct some issues with last check-in; ez80 still does not buildpatacongo2012-11-111-2/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5339 42af7a65-404d-4744-a932-0658087f49c3
* Partial change: Removing bash ARCHIVE looppatacongo2012-11-111-3/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5335 42af7a65-404d-4744-a932-0658087f49c3
* arch/../src/Makefiles now use only libraries in lib/patacongo2012-11-111-3/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5333 42af7a65-404d-4744-a932-0658087f49c3
* RGMP 4.0 update from Qiang Yupatacongo2012-11-0413-260/+509
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5305 42af7a65-404d-4744-a932-0658087f49c3
* Email address change in nuttx/patacongo2012-09-135-5/+5
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5145 42af7a65-404d-4744-a932-0658087f49c3
* Reconfigured Shenzhou to use JTAG. Misc Kconfig changespatacongo2012-09-091-0/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5118 42af7a65-404d-4744-a932-0658087f49c3