예제 #1
0
 void io_service_thread_pool::resume_processing_unit_cb(
     std::function<void(void)> callback, std::size_t virt_core,
     error_code& ec)
 {
     HPX_ASSERT_MSG(false,
         "Resuming threads on io_service_thread_pool is not supported");
 }
예제 #2
0
 void io_service_thread_pool::resume_cb(std::function<void(void)> callback,
     error_code& ec)
 {
     HPX_ASSERT_MSG(false,
         "Resuming io_service_thread_pool is not supported");
 }
예제 #3
0
 hpx::future<void> io_service_thread_pool::resume()
 {
     HPX_ASSERT_MSG(false,
         "Resuming io_service_thread_pool is not supported");
     return hpx::make_ready_future();
 }
예제 #4
0
 hpx::future<void> io_service_thread_pool::resume_processing_unit(
     std::size_t virt_core)
 {
     HPX_ASSERT_MSG(false,
         "Suspending threads on io_service_thread_pool is not supported");
 }
예제 #5
0
 void io_service_thread_pool::suspend_direct(error_code& ec)
 {
     HPX_ASSERT_MSG(false,
         "Suspending io_service_thread_pool is not supported");
 }
예제 #6
0
 void io_service_thread_pool::resume_direct(error_code& ec)
 {
     HPX_ASSERT_MSG(false,
         "Resuming io_service_thread_pool is not supported");
 }
예제 #7
0
 static std::size_t maximum_stacksize()
 {
     HPX_ASSERT_MSG( false, "segmented stack is unbound");
     return 0;
 }