| 36 | bool ignore_not_matched = false); |
| 37 | |
| 38 | static bool validate_bthread_concurrency(const char*, int32_t val) { |
| 39 | // bthread_setconcurrency sets the flag on success path which should |
| 40 | // not be strictly in a validator. But it's OK for a int flag. |
| 41 | return bthread_setconcurrency(val) == 0; |
| 42 | } |
| 43 | static bool validate_bthread_min_concurrency(const char*, int32_t val); |
| 44 | static bool validate_bthread_current_tag(const char*, int32_t val); |
| 45 | static bool validate_bthread_concurrency_by_tag(const char*, int32_t val); |
nothing calls this directly
no test coverage detected