2007-12-21 Joel Sherrill <joel.sherrill@OARcorp.com>

PR 1268/cpukit
	* libcsupport/include/rtems/assoc.h: There is no
	rtems_assoc_ptr_by_value method.
This commit is contained in:
Joel Sherrill
2007-12-21 15:24:25 +00:00
parent 1e121d8324
commit b4bf197008
2 changed files with 13 additions and 7 deletions

View File

@@ -1,3 +1,9 @@
2007-12-21 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1268/cpukit
* libcsupport/include/rtems/assoc.h: There is no
rtems_assoc_ptr_by_value method.
2007-11-06 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1266/cpukit

View File

@@ -27,17 +27,17 @@ typedef struct {
#define RTEMS_ASSOC_DEFAULT_NAME "(default)"
const rtems_assoc_t *rtems_assoc_ptr_by_name(const rtems_assoc_t *, const char *);
const rtems_assoc_t *rtems_assoc_ptr_by_value(const rtems_assoc_t *, uint32_t );
const rtems_assoc_t *rtems_assoc_ptr_by_remote(const rtems_assoc_t *, uint32_t );
const rtems_assoc_t *rtems_assoc_ptr_by_local(const rtems_assoc_t *, uint32_t);
const rtems_assoc_t *rtems_assoc_ptr_by_remote(const rtems_assoc_t *, uint32_t);
uint32_t rtems_assoc_remote_by_local(const rtems_assoc_t *, uint32_t );
uint32_t rtems_assoc_local_by_remote(const rtems_assoc_t *, uint32_t );
uint32_t rtems_assoc_remote_by_local(const rtems_assoc_t *, uint32_t);
uint32_t rtems_assoc_local_by_remote(const rtems_assoc_t *, uint32_t);
uint32_t rtems_assoc_remote_by_name(const rtems_assoc_t *, const char *);
uint32_t rtems_assoc_local_by_name(const rtems_assoc_t *, const char *);
const char *rtems_assoc_name_by_local(const rtems_assoc_t *, uint32_t );
const char *rtems_assoc_name_by_remote(const rtems_assoc_t *, uint32_t );
const char *rtems_assoc_name_by_local(const rtems_assoc_t *, uint32_t);
const char *rtems_assoc_name_by_remote(const rtems_assoc_t *, uint32_t);
uint32_t rtems_assoc_remote_by_local_bitfield(const rtems_assoc_t *, uint32_t );
uint32_t rtems_assoc_remote_by_local_bitfield(const rtems_assoc_t *, uint32_t);
char *rtems_assoc_name_by_local_bitfield(const rtems_assoc_t *, uint32_t , char *);
char *rtems_assoc_name_by_remote_bitfield(const rtems_assoc_t *, uint32_t , char *);
uint32_t rtems_assoc_local_by_remote_bitfield(const rtems_assoc_t *, uint32_t );