示例#1
0
文件: thread_data.hpp 项目: parsa/hpx
 CoroutineImpl* try_get() //-V524
 {
     return get_locked();
 }
示例#2
0
 coroutine_impl* allocate()
 {
     return get_locked();
 }
示例#3
0
文件: thread_data.hpp 项目: parsa/hpx
 CoroutineImpl* get()
 {
     return get_locked();
 }
示例#4
0
 ~coroutine_heap()
 {
     while (coroutine_impl* next = get_locked())
         delete next;
 }