2
0
mirror of https://github.com/boostorg/thread.git synced 2026-01-31 08:42:17 +00:00

Added generic_executor_ref, queue_base and queue views, fix some issues in executors.

This commit is contained in:
Vicente J. Botet Escriba
2014-08-23 18:29:47 +02:00
parent 7e21f24991
commit f3fa80c866
17 changed files with 945 additions and 100 deletions

View File

@@ -67,12 +67,13 @@ void submit_some(boost::executor& tp)
}
void at_th_entry(boost::basic_thread_pool& )
{
}
int main()
int test_executor_adaptor()
{
// std::cout << BOOST_CONTEXTOF << std::endl;
{
@@ -144,3 +145,9 @@ int main()
// std::cout << BOOST_CONTEXTOF << std::endl;
return 0;
}
int main()
{
return test_executor_adaptor();
}