| 51 | namespace tbb { |
| 52 | |
| 53 | const char* bad_last_alloc::what() const throw() { return "bad allocation in previous or concurrent attempt"; } |
| 54 | const char* improper_lock::what() const throw() { return "attempted recursive lock on critical section or non-recursive mutex"; } |
| 55 | const char* user_abort::what() const throw() { return "User-initiated abort has terminated this operation"; } |
| 56 | const char* invalid_multiple_scheduling::what() const throw() { return "The same task_handle object cannot be executed more than once"; } |