| 214 | } |
| 215 | |
| 216 | int task_create(FAR const char *name, int priority, |
| 217 | int stack_size, main_t entry, FAR char * const argv[]) |
| 218 | { |
| 219 | return task_create_with_stack(name, priority, NULL, |
| 220 | stack_size, entry, argv); |
| 221 | } |
| 222 | #endif |
| 223 | |
| 224 | /**************************************************************************** |
no test coverage detected