コード例 #1
0
ファイル: thread_data.hpp プロジェクト: parsa/hpx
 CoroutineImpl* try_get() //-V524
 {
     return get_locked();
 }
コード例 #2
0
ファイル: coroutine_impl.cpp プロジェクト: brycelelbach/hpx
 coroutine_impl* allocate()
 {
     return get_locked();
 }
コード例 #3
0
ファイル: thread_data.hpp プロジェクト: parsa/hpx
 CoroutineImpl* get()
 {
     return get_locked();
 }
コード例 #4
0
ファイル: coroutine_impl.cpp プロジェクト: brycelelbach/hpx
 ~coroutine_heap()
 {
     while (coroutine_impl* next = get_locked())
         delete next;
 }