msgbuffertranslatereturncode.c

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

C
49
字号
/* *  ITRON Message Buffer Manager * *  COPYRIGHT (c) 1989-1999. *  On-Line Applications Research Corporation (OAR). * *  The license and distribution terms for this file may be *  found in the file LICENSE in this distribution or at *  http://www.rtems.com/license/LICENSE. * *  $Id: msgbuffertranslatereturncode.c,v 1.3.4.1 2003/09/04 18:46:52 joel Exp $ */#if HAVE_CONFIG_H#include "config.h"#endif#include <itron.h>#include <rtems/itron/msgbuffer.h>#include <rtems/itron/task.h>/* *  _ITRON_Message_buffer_Translate_core_message_buffer_return_code * *  This routine translates a core message buffer object status *  into the appropriate ITRON status code. */ER _ITRON_Message_buffer_Translate_core_message_buffer_return_code(  CORE_message_queue_Status status){  switch (status) {    case CORE_MESSAGE_QUEUE_STATUS_SUCCESSFUL:      return E_OK;    case CORE_MESSAGE_QUEUE_STATUS_TOO_MANY:      return E_TMOUT;    case CORE_MESSAGE_QUEUE_STATUS_INVALID_SIZE:      return E_PAR;    case CORE_MESSAGE_QUEUE_STATUS_UNSATISFIED_NOWAIT:      return E_TMOUT;    case CORE_MESSAGE_QUEUE_STATUS_TIMEOUT:      return E_TMOUT;    default:      return E_ID;  }}

⌨️ 快捷键说明

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