Question

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

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top