Changeset 59ca2f8c in rtems


Ignore:
Timestamp:
11/06/11 11:54:49 (12 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.11, 5, master
Children:
22ad8263
Parents:
e4c0a04b
Message:

2011-11-06 Ralf Corsépius <ralf.corsepius@…>

PR1945/cpukit

  • libfs/src/dosfs/msdos.h, libfs/src/dosfs/msdos_dir.c, libfs/src/dosfs/msdos_file.c: Replace rtems_off64_t with off_t.
Location:
cpukit
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    re4c0a04b r59ca2f8c  
    77        * libfs/src/defaults/default_ftruncate.c,
    88        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:
    912        Replace rtems_off64_t with off_t.
    1013
  • cpukit/libfs/src/dosfs/msdos.h

    re4c0a04b r59ca2f8c  
    292292);
    293293
    294 rtems_off64_t msdos_file_lseek(
     294off_t msdos_file_lseek(
    295295  rtems_libio_t        *iop,              /* IN  */
    296   rtems_off64_t         offset,           /* IN  */
     296  off_t                 offset,           /* IN  */
    297297  int                   whence            /* IN  */
    298298);
     
    306306msdos_file_ftruncate(
    307307  rtems_libio_t *iop,               /* IN  */
    308   rtems_off64_t  length            /* IN  */
     308  off_t          length            /* IN  */
    309309);
    310310
     
    343343);
    344344
    345 rtems_off64_t msdos_dir_lseek(
     345off_t msdos_dir_lseek(
    346346  rtems_libio_t        *iop,              /* IN  */
    347   rtems_off64_t         offset,           /* IN  */
     347  off_t                 offset,           /* IN  */
    348348  int                   whence            /* IN  */
    349349);
  • cpukit/libfs/src/dosfs/msdos_dir.c

    re4c0a04b r59ca2f8c  
    498498 *     set apropriately).
    499499 */
    500 rtems_off64_t
    501 msdos_dir_lseek(rtems_libio_t *iop, rtems_off64_t offset, int whence)
     500off_t       
     501msdos_dir_lseek(rtems_libio_t *iop, off_t offset, int whence)
    502502{
    503503    switch (whence)
  • cpukit/libfs/src/dosfs/msdos_file.c

    re4c0a04b r59ca2f8c  
    223223 *     appropriately).
    224224 */
    225 rtems_off64_t
    226 msdos_file_lseek(rtems_libio_t *iop, rtems_off64_t offset, int whence)
     225off_t       
     226msdos_file_lseek(rtems_libio_t *iop, off_t offset, int whence)
    227227{
    228228    int                rc = RC_OK;
     
    302302 */
    303303int
    304 msdos_file_ftruncate(rtems_libio_t *iop, rtems_off64_t length)
     304msdos_file_ftruncate(rtems_libio_t *iop, off_t length)
    305305{
    306306    int                rc = RC_OK;
Note: See TracChangeset for help on using the changeset viewer.