Changeset 9dd23877 in rtems for doc/new_chapters/files.t
- Timestamp:
- 09/30/98 15:40:47 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a65c28e
- Parents:
- 17408b90
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/new_chapters/files.t
r17408b90 r9dd23877 42 42 @item @code{utime} - Change access and/or modification times of an inode 43 43 @item @code{ftruncate} - Truncate a file to a specified length 44 @it me@code{truncate} - Truncate a file to a specified length44 @item @code{truncate} - Truncate a file to a specified length 45 45 @item @code{pathconf} - Gets configuration values for files 46 46 @item @code{fpathconf} - Get configuration values for files 47 @it me@code{mknod} - Create a directory47 @item @code{mknod} - Create a directory 48 48 @end itemize 49 49 … … 1391 1391 @subheading STATUS CODES: 1392 1392 1393 @table @b 1394 @item E 1395 The 1396 1397 @end table 1398 1399 @subheading DESCRIPTION: 1393 on sucess, the number of bytes read is returned. On end of directory, 1394 0 is returned. On error, -1 is returned, and @code{errno} is set 1395 appropriately. 1396 1397 @table @b 1398 @item EBADF 1399 Invalid file descriptor @code{fd}. 1400 1401 @item EFAULT 1402 Argument points outside the calling process's address space. 1403 1404 @item EINVAL 1405 Result buffer is too small. 1406 1407 @item ENOENT 1408 No such directory. 1409 1410 @item ENOTDIR 1411 File descriptor does not refer to a directory. 1412 1413 @end table 1414 1415 @subheading DESCRIPTION: 1416 1417 @code{getdents} reads several @code{dirent} structures from the directory 1418 pointed by @code{fd} into the memory area pointed to by @code{dirp}. The 1419 parameter @code{count} is the size of the memory area. 1400 1420 1401 1421 @subheading NOTES:
Note: See TracChangeset
for help on using the changeset viewer.