JianyuWang0623 commented on code in PR #3101: URL: https://github.com/apache/nuttx-apps/pull/3101#discussion_r2158194924
########## system/fastboot/fastboot.c: ########## @@ -1070,25 +1093,33 @@ static void fastboot_publish(FAR struct fastboot_ctx_s *context, context->varlist = var; } -static void fastboot_create_publish(FAR struct fastboot_ctx_s *context) +static void fastboot_create_publish(FAR struct fastboot_ctx_s *context, + size_t nctx) Review Comment: 80 chars ``` static void fastboot_create_publish(FAR struct fastboot_ctx_s *ctx, size_t nctx) ``` ########## system/fastboot/fastboot.c: ########## @@ -991,60 +999,75 @@ static void fastboot_oem(FAR struct fastboot_ctx_s *context, } } -static void fastboot_command_loop(FAR struct fastboot_ctx_s *context) +static void fastboot_command_loop(FAR struct fastboot_ctx_s *first, Review Comment: done, first2ctx. ########## system/fastboot/fastboot.c: ########## @@ -991,60 +999,75 @@ static void fastboot_oem(FAR struct fastboot_ctx_s *context, } } -static void fastboot_command_loop(FAR struct fastboot_ctx_s *context) +static void fastboot_command_loop(FAR struct fastboot_ctx_s *first, + const size_t nctx) { - struct epoll_event ev[1]; + FAR struct fastboot_ctx_s *context; Review Comment: done -- 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: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org