mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 12:59:39 +08:00
31 lines
591 B
C++
31 lines
591 B
C++
#include "stdafx.h"
|
|
#include <vector>
|
|
#include <thread>
|
|
|
|
static void thread_main(void)
|
|
{
|
|
logger("thread-%lu: hello, error=%s",
|
|
acl::thread::self(), acl::last_serror());
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
// ³õʼ»¯ acl ¿â
|
|
acl::acl_cpp_init();
|
|
acl::log::stdout_open(true);
|
|
|
|
std::vector<std::thread*> threads;
|
|
for (int i = 0; i < 10; i++) {
|
|
std::thread* thread = new std::thread(thread_main);
|
|
threads.push_back(thread);
|
|
}
|
|
|
|
for (std::vector<std::thread*>::iterator it = threads.begin();
|
|
it != threads.end(); ++it) {
|
|
(*it)->join();
|
|
delete *it;
|
|
}
|
|
|
|
return 0;
|
|
}
|