- 求职 : 机器学习
- 论坛徽章:
- 79
|
本帖最后由 zsszss0000 于 2015-02-28 11:25 编辑
凡是这种错误基本上都是链接错误,原因首先查找是否忘记链接某一个库。
- SEM_OPEN(3) Linux Programmer's Manual SEM_OPEN(3)
- NAME
- sem_open - initialize and open a named semaphore
- SYNOPSIS
- #include <fcntl.h> /* For O_* constants */
- #include <sys/stat.h> /* For mode constants */
- #include <semaphore.h>
- sem_t *sem_open(const char *name, int oflag);
- sem_t *sem_open(const char *name, int oflag,
- mode_t mode, unsigned int value);
- Link with -lrt or -pthread.
复制代码 所以在编译的时候采用添加 -lrt 或者-pthread |
|