| 310 | ****************************************************************************/ |
| 311 | |
| 312 | pid_t nxtask_start_fork(FAR struct tcb_s *child) |
| 313 | { |
| 314 | pid_t pid; |
| 315 | |
| 316 | sinfo("Starting Child TCB=%p\n", child); |
| 317 | DEBUGASSERT(child); |
| 318 | |
| 319 | /* Get the assigned pid before we start the task */ |
| 320 | |
| 321 | pid = child->pid; |
| 322 | |
| 323 | /* Activate the task */ |
| 324 | |
| 325 | nxtask_activate(child); |
| 326 | |
| 327 | return pid; |
| 328 | } |
| 329 | |
| 330 | /**************************************************************************** |
| 331 | * Name: nxtask_abort_fork |
no test coverage detected