task クラスの一部のメソッドは、古いか、冗長な機能であるため推奨されていません。
namespace tbb { class task { public: ... void recycle_to_reexecute(); ... }; }
メンバー | 説明 |
---|---|
void recycle _to_reexecute() | recycle_to_reexecute メソッドは冗長なため、インテル® TBB 3.0 で廃止されました。t->recycle_to_reexecute() 呼び出しを次のシーケンスに置換してください。 t->set_refcount(1); t->recycle_as_safe_continuation(); |