--- ChangeLog | 5 +++++ src/skins/posix/thread.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) Index: xenomai-2.3.x/ChangeLog =================================================================== --- xenomai-2.3.x.orig/ChangeLog +++ xenomai-2.3.x/ChangeLog @@ -1,3 +1,8 @@ +2007-09-26 Jan Kiszka + + * src/skins/posix/thread.c (__wrap_pthread_create): Use the correct + attribute reference when creating the real pthread. + 2007-09-16 Philippe Gerum * RELEASE: Xenomai 2.3.4 (Cool #9) Index: xenomai-2.3.x/src/skins/posix/thread.c =================================================================== --- xenomai-2.3.x.orig/src/skins/posix/thread.c +++ xenomai-2.3.x/src/skins/posix/thread.c @@ -170,7 +170,7 @@ int __wrap_pthread_create(pthread_t *tid iargs.ret = EAGAIN; __real_sem_init(&iargs.sync, 0, 0); - err = __real_pthread_create(<id, &iattr, &__pthread_trampoline, &iargs); + err = __real_pthread_create(<id, attr, &__pthread_trampoline, &iargs); if (!err) while (__real_sem_wait(&iargs.sync) && errno == EINTR) ; __real_sem_destroy(&iargs.sync);