xiaoxiang781216 commented on code in PR #10380: URL: https://github.com/apache/nuttx/pull/10380#discussion_r1323161843
########## binfmt/binfmt_execmodule.c: ########## @@ -96,6 +97,91 @@ static void exec_ctors(FAR void *arg) } #endif +/**************************************************************************** + * Name: exchange_pid + * + * Description: + * Exchange the pid of tasks, and reverse parent-child relationship. + * + * Input Parameters: + * ptcb - parent task tcb. + * chtcb - child task tcb. + * + * Returned Value: + * none + * + ****************************************************************************/ + +static void exchange_pid(FAR struct tcb_s *ptcb, FAR struct tcb_s *chtcb) Review Comment: exec_exchange or exec_swap -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
