Changeset 58898d1d in mainline for uspace/lib/c/include
- Timestamp:
- 2017-03-24T20:31:54Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8e9b2534
- Parents:
- c9e3692
- Location:
- uspace/lib/c/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/dirent.h
rc9e3692 r58898d1d 38 38 #define NAME_MAX 256 39 39 40 #include <sys/types.h> 41 40 42 struct dirent { 41 43 char d_name[NAME_MAX + 1]; … … 45 47 int fd; 46 48 struct dirent res; 49 aoff64_t pos; 47 50 } DIR; 48 51 -
uspace/lib/c/include/ipc/vfs.h
rc9e3692 r58898d1d 65 65 VFS_IN_READ = IPC_FIRST_USER_METHOD, 66 66 VFS_IN_WRITE, 67 VFS_IN_SEEK,68 67 VFS_IN_TRUNCATE, 69 68 VFS_IN_FSTAT, -
uspace/lib/c/include/stdio.h
rc9e3692 r58898d1d 54 54 (void) __SYSCALL3(SYS_KIO, KIO_WRITE, (sysarg_t) _buf, str_size(_buf)); \ 55 55 } 56 57 #ifndef SEEK_SET58 #define SEEK_SET 059 #endif60 61 #ifndef SEEK_CUR62 #define SEEK_CUR 163 #endif64 65 #ifndef SEEK_END66 #define SEEK_END 267 #endif68 56 69 57 enum _buffer_type { -
uspace/lib/c/include/unistd.h
rc9e3692 r58898d1d 60 60 extern int dup2(int, int); 61 61 62 extern ssize_t write(int, const void *, size_t);63 extern ssize_t read(int, void *, size_t);62 extern ssize_t write(int, aoff64_t *, const void *, size_t); 63 extern ssize_t read(int, aoff64_t *, void *, size_t); 64 64 65 extern off64_t lseek(int, off64_t, int);66 65 extern int ftruncate(int, aoff64_t); 67 66 -
uspace/lib/c/include/vfs/vfs.h
rc9e3692 r58898d1d 43 43 #include <async.h> 44 44 45 #define MAX_OPEN_FILES 128 46 45 47 enum vfs_change_state_type { 46 48 VFS_PASS_HANDLE
Note:
See TracChangeset
for help on using the changeset viewer.
