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 <nuttx@fitbit.com>
This commit is contained in:
Sebastian Ene 2020-09-04 11:59:34 +03:00 committed by Xiang Xiao
parent 5beb32bf0b
commit 18b47f9663

View File

@ -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)