summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libmisc/assoc/assocnamebad.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-05-27 16:13:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-05-27 16:13:19 +0000
commit1c841bd2299922375c1b05f9c568d64ae5b5a818 (patch)
treefa31037abd59549b11ef697ad7eae989df415f6e /c/src/lib/libmisc/assoc/assocnamebad.c
parentRemoved usage of printf. (diff)
downloadrtems-1c841bd2299922375c1b05f9c568d64ae5b5a818.tar.bz2
Split out the routine rtems_assoc_name_bad().
Diffstat (limited to 'c/src/lib/libmisc/assoc/assocnamebad.c')
-rw-r--r--c/src/lib/libmisc/assoc/assocnamebad.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/c/src/lib/libmisc/assoc/assocnamebad.c b/c/src/lib/libmisc/assoc/assocnamebad.c
new file mode 100644
index 0000000000..e336c39cc7
--- /dev/null
+++ b/c/src/lib/libmisc/assoc/assocnamebad.c
@@ -0,0 +1,37 @@
+/*
+ * assoc.c
+ * rtems assoc routines
+ *
+ * $Id$
+ */
+
+#include <rtems.h>
+#include "assoc.h"
+
+#include <stdio.h> /* sprintf */
+#include <string.h> /* strcat, strcmp */
+
+#define STREQ(a,b) (strcmp((a), (b)) == 0)
+#define rtems_assoc_is_default(ap) ((ap)->name && STREQ(ap->name, RTEMS_ASSOC_DEFAULT_NAME))
+
+/*
+ * what to return if a value is not found
+ * this is not reentrant, but it really shouldn't be invoked anyway
+ */
+
+const char *
+rtems_assoc_name_bad(
+ unsigned32 bad_value
+)
+{
+#ifdef RTEMS_DEBUG
+ static char bad_buffer[32];
+
+ sprintf(bad_buffer, "< %d [0x%x] >", bad_value, bad_value);
+#else
+ static char bad_buffer[32] = "<assoc.c: BAD NAME>";
+#endif
+ return bad_buffer;
+}
+
+