xiaoxiang781216 commented on code in PR #19767: URL: https://github.com/apache/nuttx/pull/19767#discussion_r3764508555
########## include/sys/types.h: ########## @@ -135,9 +135,18 @@ typedef _size_t rsize_t; * gid_t is used for group IDs. */ +#ifdef CONFIG_SMALL_MEMORY + +typedef int16_t uid_t; +typedef int16_t gid_t; + +#else /* CONFIG_SMALL_MEMORY */ Review Comment: sorry, I make the wrong comment: after https://github.com/apache/nuttx/pull/19179, we should remove all uid_t/pid_t range check from the code base directly. -- 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]
