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

📄 msgcom.h

📁 linux下模拟进程互斥的一个小程序。
💻 H
字号:
/* msgcom.h */#include <errno.h>#include <sys/types.h>#include <sys/ipc.h>#include <sys/msg.h>#define MSGKEY 5670struct texttype {       int appli_in;       int appli_exit;};struct msgtype {    long mtype;    struct texttype text;};int UP(s)int s;{ s=s+1; return(s);}int DOWN(s)int s;{ s=s-1; return(s);}

⌨️ 快捷键说明

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