mon-queue.c

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

C
69
字号
/* *  $Id: mon-queue.c,v 1.5.10.1 2003/07/08 08:37:40 ralf Exp $ */#ifdef HAVE_CONFIG_H#include "config.h"#endif#include <rtems.h>#include <rtems/monitor.h>#include <stdio.h>voidrtems_monitor_queue_canonical(    rtems_monitor_queue_t *canonical_queue,    void                  *queue_void){    Message_queue_Control *rtems_queue = (Message_queue_Control *) queue_void;    canonical_queue->attributes = rtems_queue->attribute_set;    canonical_queue->maximum_message_size = rtems_queue->message_queue.maximum_message_size;    canonical_queue->maximum_pending_messages = rtems_queue->message_queue.maximum_pending_messages;    canonical_queue->number_of_pending_messages = rtems_queue->message_queue.number_of_pending_messages;}voidrtems_monitor_queue_dump_header(    boolean verbose){    printf("\  ID       NAME   ATTRIBUTES   PEND   MAXPEND  MAXSIZE\n");/*23456789 123456789 123456789 123456789 123456789 123456789 123456789 1234567890         1         2         3         4         5         6         7       */    rtems_monitor_separator();}/* * Dump out the "next" queue indicated by 'id'. * Returns next one to check. * Returns RTEMS_OBJECT_ID_FINAL when all done */voidrtems_monitor_queue_dump(    rtems_monitor_queue_t *monitor_queue,    boolean  verbose){    unsigned32            length = 0;    length += rtems_monitor_dump_id(monitor_queue->id);    length += rtems_monitor_pad(11, length);    length += rtems_monitor_dump_name(monitor_queue->name);    length += rtems_monitor_pad(19, length);    length += rtems_monitor_dump_attributes(monitor_queue->attributes);    length += rtems_monitor_pad(31, length);    length += rtems_monitor_dump_decimal(monitor_queue->number_of_pending_messages);    length += rtems_monitor_pad(39, length);    length += rtems_monitor_dump_decimal(monitor_queue->maximum_pending_messages);    length += rtems_monitor_pad(48, length);    length += rtems_monitor_dump_decimal(monitor_queue->maximum_message_size);    printf("\n");}

⌨️ 快捷键说明

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