summaryrefslogtreecommitdiff
path: root/nuttx/fs
Commit message (Expand)AuthorAgeFilesLines
* Eliminate a warningGregory Nutt2014-10-061-1/+1
* Fix some cornercase locking issues; make AIO lock re-entrantGregory Nutt2014-10-064-17/+61
* Add test for aio_cancel() and fix some bugs found by the testGregory Nutt2014-10-061-7/+22
* Fix some errors and spec compliance issues with aio_cancel()Gregory Nutt2014-10-061-44/+76
* Fix compile problems with debug onGregory Nutt2014-10-061-0/+1
* Basic fixes for a clean simulator build with last big fs changesGregory Nutt2014-10-064-7/+8
* Major structure of file system functions to better support asynchronous I/O. ...Gregory Nutt2014-10-0624-287/+564
* Modify FS initialization logic to handle AIO container initialization.Gregory Nutt2014-10-064-5/+106
* Modify logic to use AIO control block containerGregory Nutt2014-10-065-53/+116
* Add a AIO control container to increase the payload with OS internal stuff.Gregory Nutt2014-10-065-4/+548
* Fix some compilation issues introduced with last commitGregory Nutt2014-10-053-3/+3
* Rename CONFIG_LIBC_AIO to CONFIG_FS_AIO since it is now an OS propertyGregory Nutt2014-10-057-20/+35
* Move all file operations from libc/aio to fs/aio. These will need to be kern...Gregory Nutt2014-10-059-0/+1265
* First pread/pwrite typo fixesGregory Nutt2014-10-042-4/+4
* Add pread() and pwrite()Gregory Nutt2014-10-044-3/+267
* Fix an error when compiled with debug enabledGregory Nutt2014-09-301-2/+0
* Repartition some message queue logic: sched/mqueue should have all mqueue kno...Gregory Nutt2014-09-301-23/+4
* Add support for a custom NSH ROMFS startup image header file location. From ...Gregory Nutt2014-09-301-1/+1
* 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
* Fix some unbalanced sched_lock()/sched_unlock() pairs int the re-implemented ...Gregory Nutt2014-09-295-4/+12
* First round of fixes for re-implemented VFS message queuesGregory Nutt2014-09-294-8/+10
* Completes the re-implementation of mq_unlink()Gregory Nutt2014-09-295-85/+149
* Complete re-implementation of mq_closeGregory Nutt2014-09-293-39/+35
* Complete re-implementation of mq_open()Gregory Nutt2014-09-293-62/+203
* Separate mqueue allocation logic from mq_open() and put it in sched/mqueue/mq...Gregory Nutt2014-09-293-66/+22
* Move mq_open.c, mq_close.c, and mq_unlink.c from sched/mqueue to fs/mqueueGregory Nutt2014-09-295-1/+579
* Fix a missed include file changeGregory Nutt2014-09-291-1/+1
* Move fs/fs.h to fs/inode/inode.h and some to fs/driver/driver.hGregory Nutt2014-09-2961-97/+177
* Add build support for messages queues as part of the VFS (only build logic, n...Gregory Nutt2014-09-294-0/+55
* More testing, bugfixes and integration of VFS-based named semaphoresGregory Nutt2014-09-284-8/+36
* Fix a typo in a Make.defs fileGregory Nutt2014-09-281-1/+1
* Seems to work okay now, but needs more testingGregory Nutt2014-09-282-11/+89
* Completes VFS-based named semaphore implemetation. Still a little buggyGregory Nutt2014-09-2817-32/+343
* Add VFS-based sem_open() implementationGregory Nutt2014-09-283-0/+272
* straighten out files in some Make.defs filesGregory Nutt2014-09-282-3/+3
* Create a build structure that will (eventually) support using the VFS to mana...Gregory Nutt2014-09-283-0/+66
* Move renaming files in fs/. to fs/vfs/. (Don't all belong there)Gregory Nutt2014-09-2824-60/+115
* Move mount-related files from fs/. to fs/mount/.Gregory Nutt2014-09-288-14/+63
* Move directory operations from fs/ to fs/direntGregory Nutt2014-09-287-17/+55
* Forgot to add files from previous commitsGregory Nutt2014-09-282-0/+106
* Move drive from fs/. to fs/driver/.Gregory Nutt2014-09-2817-20/+17
* Move inode and VFS utils from fs/. to fs/inode/.Gregory Nutt2014-09-2810-6/+3
* Rename fs/fs_internal.h to fs/fs.hGregory Nutt2014-09-2861-91/+109
* A little more clean-up of poll() error handlingGregory Nutt2014-09-261-6/+6
* fs/poll: More typo fixes. Now I understand. It was not really being built ...Gregory Nutt2014-09-261-19/+2
* Typo fix. Hmmm... how did this compile before?Gregory Nutt2014-09-261-2/+2
* Should include time.hGregory Nutt2014-09-261-0/+1
* Re-implemented poll() using sem_timedwait()Gregory Nutt2014-09-261-57/+37