Dear team,
I am using posix thread and I downloaded example that I want to test. However the compile complains that:
`pthread_id_np_ t' was not declared in this scope
I have done:
#include <pthread.h>
and I compile as follow:
g++ -pthread example.cxx
How I can solve this problem?
I am using posix thread and I downloaded example that I want to test. However the compile complains that:
`pthread_id_np_ t' was not declared in this scope
I have done:
#include <pthread.h>
and I compile as follow:
g++ -pthread example.cxx
How I can solve this problem?
Comment