I'm working on a python extension which spawns threads with pthread
. In this minimal example the spawned threads don't join back the main thread in python. On the contrary I have no trouble with running the library when linked with a C++ executable. What is a safe way to pthread_create
and pthread_join
for python extensions?
My python_extension.cpp
is:
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <boost/python.hpp>
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
class myTestClass{
public:
myTestClass(){};
void *print_message_function(void *ptr);
void wrapperf();
}
void *myTestClass::print_message_function( void *ptr ){
char *message;
message = (char *) ptr;
printf("%s \n", message);
}
void myTestClass::wrapperf()
{
pthread_t thread1, thread2;
char *message1 = "Thread 1";
char *message2 = "Thread 2";
int iret1, iret2;
/* Create independent threads each of which will execute function */
iret1 = pthread_create( &thread1, NULL, print_message_function, (void*) message1);
iret2 = pthread_create( &thread2, NULL, print_message_function, (void*) message2);
/* Wait till threads are complete before main continues. Unless we */
/* wait we run the risk of executing an exit which will terminate */
/* the process and all threads before the threads have completed. */
pthread_join( thread1, NULL);
pthread_join( thread2, NULL);
printf("Thread 1 returns: %d\n",iret1);
printf("Thread 2 returns: %d\n",iret2);
}
// C Wrappers for the above C++ classes
#ifdef __cplusplus
extern "C" {
#endif
myTestClass *newcase(){ return new myTestClass};
#ifdef __cplusplus
}
#endif
// Boost python
BOOST_PYTHON_MODULE(mylib_py)
{
using namespace boost::python;
class_<myTestClass, boost::noncopyable>("myTestClass", init<std::string>())
.def("wrapperf", &myTestClass::wrapperf)
def("newcase", &newcase, return_value_policy<manage_new_object>());
}
My python script is as follows:
import mylib_py
obj = newcase()
obj.wrapperf()
x = 2 # Dummy line
Sometimes the output to this is:
Thread 1
Thread 2
Thread 1 returns: 0
Thread 2 returns: 0
Sometimes it is just:
Thread 1
Thread 2
And the threads don't join at all! How could I resolve this? Could this be because my python script has already proceeded to the next line x=2
before obj.wrapperf()
completes?