Browse Source

Added qurt stub for pthread_cont_init

Updated to latest DriverFramework

Signed-off-by: Mark Charlebois <charlebm@gmail.com>
sbg
Mark Charlebois 9 years ago
parent
commit
59b1e6b559
  1. 2
      src/lib/DriverFramework
  2. 5
      src/platforms/qurt/stubs/stubs_posix.c

2
src/lib/DriverFramework

@ -1 +1 @@ @@ -1 +1 @@
Subproject commit e137690747130776b24ace01099d3ba2329cd36a
Subproject commit 5df8560897b02314f4e3069ed3bfd4c525f38059

5
src/platforms/qurt/stubs/stubs_posix.c

@ -130,3 +130,8 @@ int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, const s @@ -130,3 +130,8 @@ int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, const s
{
return 1;
}
int pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr)
{
return 1;
}

Loading…
Cancel
Save