Ticket #1268: pr1268-47.diff

File pr1268-47.diff, 2.0 KB (added by Joel Sherrill, on 12/21/07 at 14:26:56)

Patch for 4.7

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

    RCS file: /usr1/CVS/rtems/cpukit/libcsupport/include/rtems/assoc.h,v
    retrieving revision 1.7
    diff -u -r1.7 assoc.h
     
    2727#define RTEMS_ASSOC_DEFAULT_NAME "(default)"
    2828
    2929const rtems_assoc_t *rtems_assoc_ptr_by_name(const rtems_assoc_t *, const char *);
    30 const rtems_assoc_t *rtems_assoc_ptr_by_value(const rtems_assoc_t *, uint32_t  );
    31 const rtems_assoc_t *rtems_assoc_ptr_by_remote(const rtems_assoc_t *, uint32_t  );
     30const rtems_assoc_t *rtems_assoc_ptr_by_local(const rtems_assoc_t *, uint32_t);
     31const rtems_assoc_t *rtems_assoc_ptr_by_remote(const rtems_assoc_t *, uint32_t);
    3232
    33 uint32_t     rtems_assoc_remote_by_local(const rtems_assoc_t *, uint32_t  );
    34 uint32_t     rtems_assoc_local_by_remote(const rtems_assoc_t *, uint32_t  );
     33uint32_t     rtems_assoc_remote_by_local(const rtems_assoc_t *, uint32_t);
     34uint32_t     rtems_assoc_local_by_remote(const rtems_assoc_t *, uint32_t);
    3535uint32_t     rtems_assoc_remote_by_name(const rtems_assoc_t *, const char *);
    3636uint32_t     rtems_assoc_local_by_name(const rtems_assoc_t *, const char *);
    37 const char  *rtems_assoc_name_by_local(const rtems_assoc_t *, uint32_t  );
    38 const char  *rtems_assoc_name_by_remote(const rtems_assoc_t *, uint32_t  );
     37const char  *rtems_assoc_name_by_local(const rtems_assoc_t *, uint32_t);
     38const char  *rtems_assoc_name_by_remote(const rtems_assoc_t *, uint32_t);
    3939
    40 uint32_t     rtems_assoc_remote_by_local_bitfield(const rtems_assoc_t *, uint32_t  );
     40uint32_t     rtems_assoc_remote_by_local_bitfield(const rtems_assoc_t *, uint32_t);
    4141char  *rtems_assoc_name_by_local_bitfield(const rtems_assoc_t *, uint32_t  , char *);
    4242char  *rtems_assoc_name_by_remote_bitfield(const rtems_assoc_t *, uint32_t  , char *);
    4343uint32_t     rtems_assoc_local_by_remote_bitfield(const rtems_assoc_t *, uint32_t  );