1
0
Fork 0
forked from nuttx/nuttx-update

Added opendir, readdir, closedir, etc.

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@62 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2007-03-14 22:41:09 +00:00
parent 5be8e1a2f4
commit 747295f1a8
4 changed files with 7 additions and 0 deletions

View file

@ -137,6 +137,7 @@ defconfig -- This is a configuration file similar to the Linux
descriptors (one for each open) descriptors (one for each open)
CONFIG_NFILE_STREAMS - The maximum number of streams that CONFIG_NFILE_STREAMS - The maximum number of streams that
can be fopen'ed can be fopen'ed
CONFIG_NAME_MAX - The maximum size of a file name.
CONFIG_STDIO_BUFFER_SIZE - Size of the buffer to allocate CONFIG_STDIO_BUFFER_SIZE - Size of the buffer to allocate
on fopen. (Only if CONFIG_NFILE_STREAMS > 0) on fopen. (Only if CONFIG_NFILE_STREAMS > 0)
CONFIG_NUNGET_CHARS - Number of characters that can be CONFIG_NUNGET_CHARS - Number of characters that can be

View file

@ -191,6 +191,7 @@ CONFIG_RRLOAD_BINARY=y
# descriptors (one for each open) # descriptors (one for each open)
# CONFIG_NFILE_STREAMS - The maximum number of streams that # CONFIG_NFILE_STREAMS - The maximum number of streams that
# can be fopen'ed # can be fopen'ed
# CONFIG_NAME_MAX - The maximum size of a file name.
# CONFIG_STDIO_BUFFER_SIZE - Size of the buffer to allocate # CONFIG_STDIO_BUFFER_SIZE - Size of the buffer to allocate
# on fopen. (Only if CONFIG_NFILE_STREAMS > 0) # on fopen. (Only if CONFIG_NFILE_STREAMS > 0)
# CONFIG_NUNGET_CHARS - Number of characters that can be # CONFIG_NUNGET_CHARS - Number of characters that can be
@ -212,6 +213,7 @@ CONFIG_MAX_TASK_ARGS=4
CONFIG_NPTHREAD_KEYS=4 CONFIG_NPTHREAD_KEYS=4
CONFIG_NFILE_DESCRIPTORS=32 CONFIG_NFILE_DESCRIPTORS=32
CONFIG_NFILE_STREAMS=16 CONFIG_NFILE_STREAMS=16
CONFIG_NAME_MAX=32
CONFIG_STDIO_BUFFER_SIZE=1024 CONFIG_STDIO_BUFFER_SIZE=1024
CONFIG_NUNGET_CHARS=2 CONFIG_NUNGET_CHARS=2
CONFIG_PREALLOC_MQ_MSGS=32 CONFIG_PREALLOC_MQ_MSGS=32

View file

@ -185,6 +185,7 @@ CONFIG_RRLOAD_BINARY=n
# descriptors (one for each open) # descriptors (one for each open)
# CONFIG_NFILE_STREAMS - The maximum number of streams that # CONFIG_NFILE_STREAMS - The maximum number of streams that
# can be fopen'ed # can be fopen'ed
# CONFIG_NAME_MAX - The maximum size of a file name.
# CONFIG_STDIO_BUFFER_SIZE - Size of the buffer to allocate # CONFIG_STDIO_BUFFER_SIZE - Size of the buffer to allocate
# on fopen. (Only if CONFIG_NFILE_STREAMS > 0) # on fopen. (Only if CONFIG_NFILE_STREAMS > 0)
# CONFIG_NUNGET_CHARS - Number of characters that can be # CONFIG_NUNGET_CHARS - Number of characters that can be
@ -206,6 +207,7 @@ CONFIG_MAX_TASK_ARGS=4
CONFIG_NPTHREAD_KEYS=0 CONFIG_NPTHREAD_KEYS=0
CONFIG_NFILE_DESCRIPTORS=0 CONFIG_NFILE_DESCRIPTORS=0
CONFIG_NFILE_STREAMS=0 CONFIG_NFILE_STREAMS=0
CONFIG_NAME_MAX=32
CONFIG_STDIO_BUFFER_SIZE=0 CONFIG_STDIO_BUFFER_SIZE=0
CONFIG_NUNGET_CHARS=0 CONFIG_NUNGET_CHARS=0
CONFIG_PREALLOC_MQ_MSGS=0 CONFIG_PREALLOC_MQ_MSGS=0

View file

@ -151,6 +151,7 @@ CONFIG_RRLOAD_BINARY=n
# descriptors (one for each open) # descriptors (one for each open)
# CONFIG_NFILE_STREAMS - The maximum number of streams that # CONFIG_NFILE_STREAMS - The maximum number of streams that
# can be fopen'ed # can be fopen'ed
# CONFIG_NAME_MAX - The maximum size of a file name.
# CONFIG_STDIO_BUFFER_SIZE - Size of the buffer to allocate # CONFIG_STDIO_BUFFER_SIZE - Size of the buffer to allocate
# on fopen. (Only if CONFIG_NFILE_STREAMS > 0) # on fopen. (Only if CONFIG_NFILE_STREAMS > 0)
# CONFIG_NUNGET_CHARS - Number of characters that can be # CONFIG_NUNGET_CHARS - Number of characters that can be
@ -172,6 +173,7 @@ CONFIG_MAX_TASK_ARGS=4
CONFIG_NPTHREAD_KEYS=4 CONFIG_NPTHREAD_KEYS=4
CONFIG_NFILE_DESCRIPTORS=32 CONFIG_NFILE_DESCRIPTORS=32
CONFIG_NFILE_STREAMS=16 CONFIG_NFILE_STREAMS=16
CONFIG_NAME_MAX=32
CONFIG_STDIO_BUFFER_SIZE=1024 CONFIG_STDIO_BUFFER_SIZE=1024
CONFIG_NUNGET_CHARS=2 CONFIG_NUNGET_CHARS=2
CONFIG_PREALLOC_MQ_MSGS=32 CONFIG_PREALLOC_MQ_MSGS=32