| 279 | ****************************************************************************/ |
| 280 | |
| 281 | int kthread_create(FAR const char *name, int priority, |
| 282 | int stack_size, main_t entry, FAR char * const argv[]) |
| 283 | { |
| 284 | return kthread_create_with_stack(name, priority, |
| 285 | NULL, stack_size, entry, argv); |
| 286 | } |
no test coverage detected