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

📄 msgq.c

📁 它通过提供glibc兼容使得应用程序移植到较小的c 库时相当得容易. 它能够应用到带虚拟存储的Linux和uClinux上.在大多数带MMU部件的平台上为使它更加紧凑,它也能够编译成共享库.uClib
💻 C
字号:
#include <errno.h>#include <sys/msg.h>#include "ipc.h"#ifdef L_msgctl#ifdef __NR_msgctl_syscall3(int, msgctl, int, msqid, int, cmd, struct msqid_ds *, buf);#else/* Message queue control operation.  */int msgctl (int msqid, int cmd, struct msqid_ds *buf){    return __ipc(IPCOP_msgctl ,msqid ,cmd ,0 ,buf);}#endif#endif#ifdef L_msgget#ifdef __NR_msgget_syscall2(int, msgget, key_t, key, int, msgflg)#else/* Get messages queue.  */int msgget (key_t key, int msgflg){    return __ipc(IPCOP_msgget ,key ,msgflg ,0 ,0);}#endif#endifstruct new_msg_buf{    struct msgbuf * oldmsg;    long int r_msgtyp;       /* the fifth arg of __ipc */};/* Receive message from message queue.  */#ifdef L_msgrcv#ifdef __NR_msgrcv_syscall5(int, msgrcv, int, msqid, void *, msgp, size_t, msgsz, long int, msgtyp, int, msgflg);#elseint msgrcv (int msqid, void *msgp, size_t msgsz,	long int msgtyp, int msgflg){    struct new_msg_buf temp;    temp.r_msgtyp = msgtyp;    temp.oldmsg = msgp;    return __ipc(IPCOP_msgrcv ,msqid ,msgsz ,msgflg ,&temp);}#endif#endif#ifdef L_msgsnd#ifdef __NR_msgsnd_syscall4(int, msgsnd, int, msqid, const void *, msgp, size_t, msgsz, int, msgflg);#else/* Send message to message queue.  */int msgsnd (int msqid, const void *msgp, size_t msgsz, int msgflg){    return __ipc(IPCOP_msgsnd, msqid, msgsz, msgflg, (void *)msgp);}#endif#endif

⌨️ 快捷键说明

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