summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2010-12-31 00:42:46 +0100
committerJon Bergli Heier <snakebite@jvnv.net>2010-12-31 00:42:46 +0100
commitb439fcd1916cef267bde32f3424d8311519d3d16 (patch)
tree9335911a159dee74ff6c410db5e3ca3167b84218 /main.cpp
parent9a5138ce981697e243fa0de2bc2668eaa80efb76 (diff)
Read number of threads to start from audist.threads, defaulting to 10.
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index dc96f5a..28b846b 100644
--- a/main.cpp
+++ b/main.cpp
@@ -20,12 +20,13 @@ int main(int argc, char **argv) {
HTTP::Server httpd(io_service, tcp::endpoint(tcp::v6(), config::vm["audist.httpd_port"].as<int>()));
+ std::size_t num_threads = config::vm["audist.threads"].as<std::size_t>();
std::vector<boost::shared_ptr<boost::thread> > threads;
- for(std::size_t i = 0; i < 10; i++) {
+ for(std::size_t i = 0; i < num_threads; i++) {
boost::shared_ptr<boost::thread> thread(new boost::thread(boost::bind(&boost::asio::io_service::run, &io_service)));
threads.push_back(thread);
}
- for(std::size_t i = 0; i < 10; i++) {
+ for(std::size_t i = 0; i < num_threads; i++) {
threads[i]->join();
}
} catch(std::exception& e) {