assocnamebad.c

来自「RTEMS (Real-Time Executive for Multiproc」· C语言 代码 · 共 42 行

C
42
字号
/* * assoc.c *      rtems assoc routines * *  $Id: assocnamebad.c,v 1.3 2001/01/08 18:26:44 joel Exp $ */#if HAVE_CONFIG_H#include "config.h"#endif#include <rtems.h>#include <rtems/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;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?