summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Cosmetic update to comments/READMEGregory Nutt2014-10-012-16/+16
|
* Simulation: Change how simulated UART data availability is signaled. The ↵Gregory Nutt2014-10-013-4/+43
| | | | last change is not safe (but I don't like this workaround either -- maybe something better will come to me).
* Mostly cosmetic changes to simulatorGregory Nutt2014-10-013-5/+16
|
* Update some commentsGregory Nutt2014-09-301-0/+8
|
* Fix a cornercase problem in in the UART simulationGregory Nutt2014-09-301-15/+22
|
* Update the TODO list and a READMEGregory Nutt2014-09-302-24/+13
|
* Restore up_internal.h. Changes its name was a bad idea... at least for nowGregory Nutt2014-09-3026-30/+30
|
* Update ChangeLogsGregory Nutt2014-09-302-0/+7
|
* NSH Fix ls -l output for regular filesGregory Nutt2014-09-301-1/+1
|
* Simulated UART seems functionalGregory Nutt2014-09-302-83/+30
|
* Forgot to add a fileGregory Nutt2014-09-301-0/+69
|
* Completes simulated uart implementation... does not workGregory Nutt2014-09-308-189/+246
|
* simulation: Add a simulatied UART input device. Also lots of misc clean-up ↵Gregory Nutt2014-09-3036-75/+344
| | | | for stylistic compatibility with other architectures
* Update TODO listGregory Nutt2014-09-301-49/+7
|
* Fix an error when compiled with debug enabledGregory Nutt2014-09-301-2/+0
|
* Repartition some message queue logic: sched/mqueue should have all mqueue ↵Gregory Nutt2014-09-305-34/+105
| | | | knowledge; fs/mqueue should deal only with inodes
* Update ChangeLogGregory Nutt2014-09-301-1/+3
|
* Add support for a custom NSH ROMFS startup image header file location. From ↵Gregory Nutt2014-09-303-7/+40
| | | | Martin Lederhilger
* Update TODO listGregory Nutt2014-09-291-10/+2
|
* Update ChangeLogGregory Nutt2014-09-291-1/+3
|
* Add implementation of timeouts for the apps/netutils/webclient. From ↵Gregory Nutt2014-09-292-12/+32
| | | | Brennan Ashton
* Oops... forgot to add a new directory in the last commitGregory Nutt2014-09-292-0/+68
|
* Add a framework that may someday support shared memory objects in the VFSGregory Nutt2014-09-292-0/+3
|
* Eliminate a warning about an uninitilized variableGregory Nutt2014-09-291-86/+90
|
* Cosmetic update to commentsGregory Nutt2014-09-2916-30/+30
|
* Update ChangeLogGregory Nutt2014-09-291-0/+5
|
* Fix some unbalanced sched_lock()/sched_unlock() pairs int the re-implemented ↵Gregory Nutt2014-09-295-4/+12
| | | | VFS semaphore and message queue logic
* First round of fixes for re-implemented VFS message queuesGregory Nutt2014-09-295-10/+12
|
* Completes the re-implementation of mq_unlink()Gregory Nutt2014-09-295-85/+149
|
* Complete re-implementation of mq_closeGregory Nutt2014-09-2913-72/+168
|
* Complete re-implementation of mq_open()Gregory Nutt2014-09-297-72/+374
|
* Separate mqueue allocation logic from mq_open() and put it in ↵Gregory Nutt2014-09-299-95/+101
| | | | sched/mqueue/mq_msgqalloc.c
* Move mq_open.c, mq_close.c, and mq_unlink.c from sched/mqueue to fs/mqueueGregory Nutt2014-09-2916-48/+59
|
* Convert mqueue structure for use in VFS as inode data; rename ↵Gregory Nutt2014-09-2917-157/+30
| | | | mqueue_inode_s; remove links, reference counts and name from mqueue structure. These will be replaced by VFS data. Remove g_msgqueues and mq_findnamed.c; these will be replace with VFS logic
* Fix a missed include file changeGregory Nutt2014-09-291-1/+1
|
* Fix some comments: Remove button description from GPIO interrupt handlers ↵Gregory Nutt2014-09-296-12/+12
| | | | that derive from the button interrupt handler
* Fix a perverse case where vfork() is called from a pthread. Still not ↵Gregory Nutt2014-09-291-16/+29
| | | | recommended
* Update ChangeLogGregory Nutt2014-09-291-0/+4
|
* More vfork(): If we get to vfork() via system call, then we need to clone ↵Gregory Nutt2014-09-291-0/+20
| | | | some system call information so that the return form the cloned system call works correctly
* Update ChangeLogGregory Nutt2014-09-291-0/+4
|
* Fix vfork(). Now that arguments are kept on the stack, the way that ↵Gregory Nutt2014-09-293-34/+115
| | | | arguments are passed from parent to child in vfork() must change. This bug has always been present, but was not visible with the old strdup() way of passing arguments
* Refresh STM32F4Discovery kosest configuration fileGregory Nutt2014-09-291-1/+7
|
* Fix conditional compilation error introduced with the named semaphore changesGregory Nutt2014-09-291-1/+1
|
* Fix missing header file for bug introduced yesterdayGregory Nutt2014-09-292-0/+2
|
* Update ChangeLogGregory Nutt2014-09-291-0/+2
|
* Move fs/fs.h to fs/inode/inode.h and some to fs/driver/driver.hGregory Nutt2014-09-2963-98/+180
|
* Add build support for messages queues as part of the VFS (only build logic, ↵Gregory Nutt2014-09-294-0/+55
| | | | no C files yet)
* Update ChangeLogGregory Nutt2014-09-291-1/+5
|
* Semaphore initialization is now only required if priority inheritance is ↵Gregory Nutt2014-09-294-17/+24
| | | | initialized
* STM32F4-Discovery: Fix some backwad conditional compilationGregory Nutt2014-09-291-1/+1
|