当前位置: 技术问答>linux和unix
error:'MSG_R' undeclared (first use in this function) under Solaris
来源: 互联网 发布时间:2016-10-08
本文导语: 在进程间通讯中,定义了如下代码 #define SVMSG_MODE (MSG_R | MSG_W | MSG_R>>3 | MSG_R>>6) 当编译时产生如下错误 error:'MSG_R' undeclared (first use in this function) error:'MSG_W' undeclared (first use in this function) 我的操作系统是...
在进程间通讯中,定义了如下代码
#define SVMSG_MODE (MSG_R | MSG_W | MSG_R>>3 | MSG_R>>6)
当编译时产生如下错误
error:'MSG_R' undeclared (first use in this function)
error:'MSG_W' undeclared (first use in this function)
我的操作系统是Solaris 10,MSG_R定义在哪个头文件中?还是Solaris 10本身不支持MSG_R,谢谢!
#define SVMSG_MODE (MSG_R | MSG_W | MSG_R>>3 | MSG_R>>6)
当编译时产生如下错误
error:'MSG_R' undeclared (first use in this function)
error:'MSG_W' undeclared (first use in this function)
我的操作系统是Solaris 10,MSG_R定义在哪个头文件中?还是Solaris 10本身不支持MSG_R,谢谢!
|
#include
#include
#include