我正在尝试使用共享内存中的指针编译代码。我想使用 mutex 变量来检查是否可以进行进程间同步。但是 Xcode 给了我错误“解析问题”预期表达式“并
*(pthread_mutex_t*)shm_addr = PTHREAD_MUTEX_INITIALIZER;
以红色突出显示该行。
这是代码。
#include <sys/ipc.h>
#include <sys/shm.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#define KEY_NUM 9527
#define MEM_SIZE 4096
pthread_mutex_t test;
int main(int argc, char * argv[])
{
int shm_id;
void *shm_addr;
if( (shm_id = shmget((key_t)KEY_NUM, MEM_SIZE, IPC_CREAT | 0666)) == -1)
{
printf("fail to allocate a shared memory.\n");
return -1;
}
if((shm_addr = shmat(shm_id, (void*)0,0)) == (void*)-1)
{
printf("fail to attach shared memory.\n");
return -1;
}
*(pthread_mutex_t*)shm_addr = PTHREAD_MUTEX_INITIALIZER; // error.
test = PTHREAD_MUTEX_INITIALIZER;
// this statement works well.
*(int*)(shm_addr+64) = 10000; // this statement also works well.
// information useful to you.
// sizeof(pthread_mutex_t*) : 64
// OS X Mountain Lion 64bits
return 0;
}
我不知道为什么。任何人都可以帮忙吗?
谢谢你。