iOS 或者 Mac OS X 使用 sem_init 总是返回 -1


1,

原因是:Mac OS  X不支持创建无名的信号量,只能使用sem_open创建有名的信号量。

"<semaphore.h> declares sem_init so that it compiles properly on OS X, but it returns -1 with errno set to ENOSYS (function not implemented)."

创建:

sem_t* psemaphore = sem_open("yoursem",O_CREAT, S_IRUSR | S_IWUSR, 0);

//严重备注,信号名称不要带路径,否则会失败

 

销毁:

 sem_close(psemaphore);
 sem_unlink("yoursem");


2,详细请参考:

http://www.oschina.net/question/565065_64429

你可能感兴趣的:(iOS 或者 Mac OS X 使用 sem_init 总是返回 -1)