Some methods of class task are deprecated because they have obsolete or redundant functionality.
namespace tbb {
class task {
public:
...
void recycle_to_reexecute();
...
};
}
| Member | Description |
|---|---|
| void recycle _to_reexecute() |
Intel® Threading Building Blocks (Intel® TBB) 3.0 deprecated method recycle_to_reexecute because it is redundant. Replace a call t->recycle_to_reexecute()with the following sequence: t->set_refcount(1); t->recycle_as_safe_continuation(); |