You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/09/05 08:42:05 UTC

[incubator-nuttx] 02/02: arch/sim: Add the pthread_cond_* API to the nuttx-names.in list

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 18b47f966381555692a51984944921e31ee69b14
Author: Sebastian Ene <nu...@fitbit.com>
AuthorDate: Fri Sep 4 11:59:34 2020 +0300

    arch/sim: Add the pthread_cond_* API to the nuttx-names.in list
    
     ## Summary of changes
    
    The pthread_cond_* API is also present as part of libfs.a and we want
    to avoid colisions and link with the correct implementation.
    
    Signed-off-by: Sebastian Ene <nu...@fitbit.com>
---
 arch/sim/src/nuttx-names.in | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/sim/src/nuttx-names.in b/arch/sim/src/nuttx-names.in
index 165db84..82f0931 100644
--- a/arch/sim/src/nuttx-names.in
+++ b/arch/sim/src/nuttx-names.in
@@ -114,6 +114,10 @@ NXSYMBOLS(pipe)
 NXSYMBOLS(poll)
 NXSYMBOLS(printf)
 NXSYMBOLS(pthread_create)
+NXSYMBOLS(pthread_cond_destroy)
+NXSYMBOLS(pthread_cond_init)
+NXSYMBOLS(pthread_cond_signal)
+NXSYMBOLS(pthread_cond_wait)
 NXSYMBOLS(pthread_detach)
 NXSYMBOLS(pthread_exit)
 NXSYMBOLS(pthread_getspecific)