xiaoxiang781216 commented on code in PR #8140: URL: https://github.com/apache/nuttx/pull/8140#discussion_r1071257192
########## include/nuttx/mm/mm.h: ########## @@ -88,9 +88,11 @@ /* The kernel heap is never accessible from user code */ +#if defined(CONFIG_BUILD_KERNEL) || defined(CONFIG_BUILD_PROTECTED) #ifndef __KERNEL__ Review Comment: or merge into one line: ``` #if defined(__KERNEL__) && defined(CONFIG_BUILD_KERNEL) || defined(CONFIG_BUILD_PROTECTED) ``` -- 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]
