Changeset 145c9343 in rtems


Ignore:
Timestamp:
12/06/11 06:39:03 (12 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.11, 5, master
Children:
46ae58a5
Parents:
2186f401
Message:

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

  • libcsupport/include/rtems/libio.h: Make LIBIO_FLAGS_* defined unsigned (Avoid implicit sign conversions).
Location:
cpukit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    r2186f401 r145c9343  
     12011-12-06      Ralf Corsépius <ralf.corsepius@rtems.org>
     2
     3        * libcsupport/include/rtems/libio.h:
     4        Make LIBIO_FLAGS_* defined unsigned (Avoid implicit sign
     5        conversions).
     6
    172011-12-05      Ralf Corsépius <ralf.corsepius@rtems.org>
    28
    39        * libmisc/capture/capture.c:
    410        Make RTEMS_CAPTURE_* defines unsigned (Avoid implicit
    5         sign-conversions).
     11        sign conversions).
    612        Make rtems_capture_trigger static (Missing prototypes).
    713        Make rtems_capture_trigger static (Missing prototypes).
  • cpukit/libcsupport/include/rtems/libio.h

    r2186f401 r145c9343  
    11581158 */
    11591159
    1160 #define LIBIO_FLAGS_NO_DELAY      0x0001  /* return immediately if no data */
    1161 #define LIBIO_FLAGS_READ          0x0002  /* reading */
    1162 #define LIBIO_FLAGS_WRITE         0x0004  /* writing */
    1163 #define LIBIO_FLAGS_OPEN          0x0100  /* device is open */
    1164 #define LIBIO_FLAGS_APPEND        0x0200  /* all writes append */
    1165 #define LIBIO_FLAGS_CREATE        0x0400  /* create file */
    1166 #define LIBIO_FLAGS_CLOSE_ON_EXEC 0x0800  /* close on process exec() */
     1160#define LIBIO_FLAGS_NO_DELAY      0x0001U  /* return immediately if no data */
     1161#define LIBIO_FLAGS_READ          0x0002U  /* reading */
     1162#define LIBIO_FLAGS_WRITE         0x0004U  /* writing */
     1163#define LIBIO_FLAGS_OPEN          0x0100U  /* device is open */
     1164#define LIBIO_FLAGS_APPEND        0x0200U  /* all writes append */
     1165#define LIBIO_FLAGS_CREATE        0x0400U  /* create file */
     1166#define LIBIO_FLAGS_CLOSE_ON_EXEC 0x0800U  /* close on process exec() */
    11671167#define LIBIO_FLAGS_READ_WRITE    (LIBIO_FLAGS_READ | LIBIO_FLAGS_WRITE)
    11681168
Note: See TracChangeset for help on using the changeset viewer.