| 62 | ****************************************************************************/ |
| 63 | |
| 64 | void group_bind(FAR struct tcb_s *tcb) |
| 65 | { |
| 66 | FAR struct tcb_s *ptcb = this_task(); |
| 67 | |
| 68 | DEBUGASSERT(ptcb && tcb && ptcb->group && !tcb->group); |
| 69 | |
| 70 | /* Copy the group reference from the parent to the child */ |
| 71 | |
| 72 | tcb->group = ptcb->group; |
| 73 | } |
| 74 | |
| 75 | /**************************************************************************** |
| 76 | * Name: group_join |
no test coverage detected