Exemplo n.º 1
0
	/*! Wait till processing thead has finished.
	    \return 0 on success */
	int join() { return _pmodel == pm_pipeline ? _thread.join() : -1; }
Exemplo n.º 2
0
	/*! Wait till processing thead has finished.
	    \return 0 on success */
	int join() { return _thread.join(); }
Exemplo n.º 3
0
Arquivo: timer.hpp Projeto: 6qat/fix8
	/// Join timer thread. Wait till exits.
   void join() { _thread.join(); }
Exemplo n.º 4
0
	/// Stop the logging thread.
	void stop() {  _stopping = true; send(std::string()); _thread.join(); }
Exemplo n.º 5
0
	/*! Wait till processing thead has finished.
	    \return 0 on success */
	int join() { return _pipelined ? _thread.join() : -1; }