Changeset e4c0a04b in rtems


Ignore:
Timestamp:
11/06/11 11:52:45 (12 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.11, 5, master
Children:
59ca2f8c
Parents:
b799e4eb
Message:

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

PR1945/cpukit

  • libfs/src/defaults/default_ftruncate.c, libfs/src/defaults/default_lseek.c: Replace rtems_off64_t with off_t.
Location:
cpukit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    rb799e4eb re4c0a04b  
    44        * libcsupport/include/rtems/libio.h: Mark rtems_off64_t as
    55        deprecated.
     6        Replace rtems_off64_t with off_t.
     7        * libfs/src/defaults/default_ftruncate.c,
     8        libfs/src/defaults/default_lseek.c:
    69        Replace rtems_off64_t with off_t.
    710
  • cpukit/libfs/src/defaults/default_ftruncate.c

    rb799e4eb re4c0a04b  
    1616int rtems_filesystem_default_ftruncate(
    1717  rtems_libio_t *iop,
    18   rtems_off64_t  length
     18  off_t          length
    1919)
    2020{
  • cpukit/libfs/src/defaults/default_lseek.c

    rb799e4eb re4c0a04b  
    1414#include <rtems/seterr.h>
    1515
    16 rtems_off64_t rtems_filesystem_default_lseek(
     16off_t rtems_filesystem_default_lseek(
    1717  rtems_libio_t *iop,
    18   rtems_off64_t  length,
     18  off_t          length,
    1919  int            whence
    2020)
Note: See TracChangeset for help on using the changeset viewer.