improve i386 inline syscall asm on non-broken compilers
[musl] / src / thread / pthread_getschedparam.c
index a994b63..1cba073 100644 (file)
@@ -1,10 +1,11 @@
 #include "pthread_impl.h"
+#include "lock.h"
 
 int pthread_getschedparam(pthread_t t, int *restrict policy, struct sched_param *restrict param)
 {
        int r;
        LOCK(t->killlock);
-       if (t->dead) {
+       if (!t->tid) {
                r = ESRCH;
        } else {
                r = -__syscall(SYS_sched_getparam, t->tid, param);