how can I use pthread_spinlock_t in gcc 4.6.3? Which flags do I have to specify at compile time? I'm using Ubuntu 12.04!

Thanks

有帮助吗?

解决方案

Just add the option -pthread or -lpthread when linking.

Options -std=c99/c11 will restrict the available library functions to those of C99/C11 standard library

For getting C99/C11 languages features/library and and POSIX (and some BSD and some GNU extension) APIs, one can use -std=gnu99 or -std=gnu11 option to GCC.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top