Changeset 59ca2f8c in rtems
- Timestamp:
- 11/06/11 11:54:49 (12 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 22ad8263
- Parents:
- e4c0a04b
- Location:
- cpukit
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
re4c0a04b r59ca2f8c 7 7 * libfs/src/defaults/default_ftruncate.c, 8 8 libfs/src/defaults/default_lseek.c: 9 Replace rtems_off64_t with off_t. 10 * libfs/src/dosfs/msdos.h, libfs/src/dosfs/msdos_dir.c, 11 libfs/src/dosfs/msdos_file.c: 9 12 Replace rtems_off64_t with off_t. 10 13 -
cpukit/libfs/src/dosfs/msdos.h
re4c0a04b r59ca2f8c 292 292 ); 293 293 294 rtems_off64_t msdos_file_lseek(294 off_t msdos_file_lseek( 295 295 rtems_libio_t *iop, /* IN */ 296 rtems_off64_toffset, /* IN */296 off_t offset, /* IN */ 297 297 int whence /* IN */ 298 298 ); … … 306 306 msdos_file_ftruncate( 307 307 rtems_libio_t *iop, /* IN */ 308 rtems_off64_tlength /* IN */308 off_t length /* IN */ 309 309 ); 310 310 … … 343 343 ); 344 344 345 rtems_off64_t msdos_dir_lseek(345 off_t msdos_dir_lseek( 346 346 rtems_libio_t *iop, /* IN */ 347 rtems_off64_toffset, /* IN */347 off_t offset, /* IN */ 348 348 int whence /* IN */ 349 349 ); -
cpukit/libfs/src/dosfs/msdos_dir.c
re4c0a04b r59ca2f8c 498 498 * set apropriately). 499 499 */ 500 rtems_off64_t 501 msdos_dir_lseek(rtems_libio_t *iop, rtems_off64_t offset, int whence)500 off_t 501 msdos_dir_lseek(rtems_libio_t *iop, off_t offset, int whence) 502 502 { 503 503 switch (whence) -
cpukit/libfs/src/dosfs/msdos_file.c
re4c0a04b r59ca2f8c 223 223 * appropriately). 224 224 */ 225 rtems_off64_t 226 msdos_file_lseek(rtems_libio_t *iop, rtems_off64_t offset, int whence)225 off_t 226 msdos_file_lseek(rtems_libio_t *iop, off_t offset, int whence) 227 227 { 228 228 int rc = RC_OK; … … 302 302 */ 303 303 int 304 msdos_file_ftruncate(rtems_libio_t *iop, rtems_off64_t length)304 msdos_file_ftruncate(rtems_libio_t *iop, off_t length) 305 305 { 306 306 int rc = RC_OK;
Note: See TracChangeset
for help on using the changeset viewer.