#include <iostream>#include <pthread.h>#include "PhysicsNtuple/Handle.h"#include "PhysicsNtuple/Mutex.h"Go to the source code of this file.
Namespaces | |
| namespace | Anp |
Classes | |
| class | Anp::RunThread< T > |
Functions | |
| template<class T> | |
| void * | get_thread_done (void *data_) |
|
||||||||||
|
Definition at line 66 of file RunThread.h. 00067 {
00068 if(!data_)
00069 {
00070 std::cerr << "Anp::get_thread_done - null data pointer" << std::endl;
00071 return 0;
00072 }
00073
00074 T *data = static_cast<T *> (data_);
00075
00076 data -> GetDone();
00077
00078 return data;
00079 }
|
1.3.9.1