source: rtems/cpukit/libcsupport/src/assocnamebyremotebitfield.c @ 55568af

4.104.114.84.95
Last change on this file since 55568af was 55568af, checked in by Joel Sherrill <joel.sherrill@…>, on 03/26/07 at 22:31:31

2007-03-26 Joel Sherrill <joel@…>

  • libcsupport/src/assoc.c, libcsupport/src/libio.c, libcsupport/src/write.c: Split files to shrink minimum.exe. Hopefully this will not be deemed necessary to commit to the 4.7 branch.
  • libcsupport/src/assoclocalbyname.c, libcsupport/src/assoclocalbyremote.c, libcsupport/src/assoclocalbyremotebitfield.c, libcsupport/src/assocnamebylocal.c, libcsupport/src/assocnamebylocalbitfield.c, libcsupport/src/assocnamebyremote.c, libcsupport/src/assocnamebyremotebitfield.c, libcsupport/src/assocptrbylocal.c, libcsupport/src/assocptrbyname.c, libcsupport/src/assocptrbyremote.c, libcsupport/src/assocremotebylocal.c, libcsupport/src/assocremotebylocalbitfield.c, libcsupport/src/assocremotebyname.c, libcsupport/src/libio_init.c, libcsupport/src/write_r.c: New files.
  • Property mode set to 100644
File size: 572 bytes
Line 
1/*
2 * assoc.c
3 *      rtems assoc routines
4 *
5 *  $Id$
6 */
7
8#if HAVE_CONFIG_H
9#include "config.h"
10#endif
11
12#define INSIDE_ASSOC
13
14#include <rtems.h>
15#include <rtems/assoc.h>
16
17#include <string.h>             /* strcat, strcmp */
18
19
20char *rtems_assoc_name_by_remote_bitfield(
21  const rtems_assoc_t *ap,
22  uint32_t             value,
23  char                *buffer
24)
25{
26  uint32_t   b;
27
28  *buffer = 0;
29
30  for (b = 1; b; b <<= 1) {
31    if (b & value) {
32      if (*buffer)
33        strcat(buffer, " ");
34      strcat(buffer, rtems_assoc_name_by_remote(ap, b));
35    }
36  }
37
38  return buffer;
39}
Note: See TracBrowser for help on using the repository browser.