cpp-pthread  (v1.7.3)
Simple C++ wrapper to pthread functions.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
pthread.cpp
1 //
2 // cpp_pthread.hpp
3 // cpp_pthread
4 //
5 // Created by herbert koelman on 18/03/2016.
6 //
7 //
8 
9 #ifndef pthread_pthread_hpp
10 #define pthread_pthread_hpp
11 
12 #include "pthread/pthread.hpp"
13 #include "pthread/config.h"
14 
15 namespace pthread {
16 
17  extern "C" const char *cpp_pthread_version(){
18 #ifndef CPP_PTHREAD_VERSION
19  return "missing CPP_PTHREAD_VERSION define. Re-run configure" ;
20 #else
21  return CPP_PTHREAD_VERSION ;
22 #endif
23  }
24 
25 }
26 #endif /* pthread_pthread_hpp */
const char * cpp_pthread_version()
Definition: pthread.cpp:17