quickstart.cpp

来自「linux 环境下比较好的一个线程池实现源代码」· C++ 代码 · 共 51 行

CPP
51
字号
/*! \file * \brief Quick start example. * * This is a very simple example which can be used to configure the threadpool environment on your system.  * * Copyright (c) 2005-2006 Philipp Henkel * * Distributed under the Boost Software License, Version 1.0. (See * accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) * * http://threadpool.sourceforge.net * */#include <iostream>#include <boost/threadpool.hpp>using namespace std;using namespace boost::threadpool;// Some example tasksvoid first_task(){   cout << "first task is running\n" ;}void second_task(){   cout << "second task is running\n" ;}int main(int argc,char *argv[]){   // Create fifo thread pool container with two threads.   pool tp(2);      // Add some tasks to the pool.   tp.schedule(&first_task);   tp.schedule(&second_task);        //  Wait until all tasks are finished.   tp.wait();      // Now all tasks are finished!	   return(0);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?