| 268 | } |
| 269 | |
| 270 | zthr_t * |
| 271 | zthr_create(const char *zthr_name, zthr_checkfunc_t *checkfunc, |
| 272 | zthr_func_t *func, void *arg) |
| 273 | { |
| 274 | return (zthr_create_timer(zthr_name, checkfunc, |
| 275 | func, arg, (hrtime_t)0)); |
| 276 | } |
| 277 | |
| 278 | /* |
| 279 | * Create a zthr with specified maximum sleep time. If the time |
no test coverage detected