⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 queue.h

📁 VRTX操作系统
💻 H
字号:
/*************************************************************************

	Copyright (c) 1999 Mentor Graphics Corporation.


IMPORTANT - USE OF THIS SOFTWARE IS SUBJECT TO LICENSE RESTRICTIONS
CAREFULLY READ THE LICENSE AGREEMENT BEFORE USING THE SOFTWARE


*************************************************************************/

struct qentry{
  char **item;            /* Pointer to actual queue  */
  unsigned char maxcount; /* maximum # of messages    */
  unsigned char head;     /* where to get the message */
  unsigned char count;    /* number of messages       */
  unsigned char tid;   	  /* pending task's id        */
};

#define NO_QID 255
 
extern struct qentry vmc_qcb[];
extern unsigned char vmc_nextqid;

⌨️ 快捷键说明

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