Ticket #1268: pr1268-head.diff

File pr1268-head.diff, 1.1 KB (added by Joel Sherrill, on 12/21/07 at 14:27:20)

patch for 4.8 and cvs head

  • cpukit/libcsupport/include/rtems/assoc.h

    RCS file: /usr1/CVS/rtems/cpukit/libcsupport/include/rtems/assoc.h,v
    retrieving revision 1.8
    diff -u -r1.8 assoc.h
     
    1515#define _RTEMS_RTEMS_ASSOC_H
    1616
    1717typedef struct {
    18     const char   *name;
     18    const char  *name;
    1919    uint32_t     local_value;
    2020    uint32_t     remote_value;
    2121} rtems_assoc_t;
     
    3131  const char *
    3232);
    3333
    34 const rtems_assoc_t *rtems_assoc_ptr_by_value(
    35   const rtems_assoc_t *,
    36   uint32_t
    37 );
    38 
    3934const rtems_assoc_t *rtems_assoc_ptr_by_remote(
    4035  const rtems_assoc_t *,
    4136  uint32_t
     
    5348
    5449uint32_t rtems_assoc_remote_by_name(
    5550  const rtems_assoc_t *,
    56   const char *);
     51  const char *
     52);
    5753uint32_t rtems_assoc_local_by_name(
    5854  const rtems_assoc_t *,
    59   const char *);
     55  const char *
     56);
    6057
    6158const char *rtems_assoc_name_by_local(
    6259  const rtems_assoc_t *,