This is an automated email from the ASF dual-hosted git repository. jerpelea pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit e02c14a9267720255a7f327697c2b6d1d45cdca4 Author: YAMAMOTO Takashi <[email protected]> AuthorDate: Mon Jan 27 13:54:02 2020 +0900 libs/README.txt: Fix a typo Also, remove an extra space. --- libs/README.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/README.txt b/libs/README.txt index 96af736..c4ab07c 100644 --- a/libs/README.txt +++ b/libs/README.txt @@ -2,7 +2,7 @@ README ====== This directory holds NuttX libraries. Libraries in NuttX are very special -creatures. The have these properties: +creatures. They have these properties: 1. They can be shared by both application logic and logic within the OS when using the FLAT build. @@ -19,7 +19,7 @@ creatures. The have these properties: For example, sem_wait() is both a cancellation point and modifies the errno value. So within the FLAT build and without kernel version for the PROTECTED and KERNEL builds, the special internal OS interface - nxsem_wait() must be used. Within libraries, the macro _SEM_WAIT() + nxsem_wait() must be used. Within libraries, the macro _SEM_WAIT() (as defined in include/nuttx/semaphore.h) is used instead. The definition of this macro accounts for the different usage environments.
