예제 #1
0
	/// Stop the processing thread and quit.
	virtual void quit() { _thread.kill(1); }
예제 #2
0
파일: logger.hpp 프로젝트: douwen2000/fix8
	/// Kill the logging thread.
	void kill() { _thread.kill(0); }
예제 #3
0
	/// Stop the processing threads and quit.
	virtual void quit()
	{
		if (_pmodel == pm_pipeline)
			_callback_thread.kill(1);
		AsyncSocket<f8String>::quit();
	}
예제 #4
0
파일: timer.hpp 프로젝트: 6qat/fix8
	/*! Kill timer thread.
	  \param sig signal to kill with */
   void kill(const int sig=SIGKILL) { _thread.kill(sig); }