Remove pthread_setcanceltype() from non-dbg strace

This commit is contained in:
Justine Tunney 2025-01-02 22:25:29 -08:00
parent 27f2777cc6
commit 662e7b217f
No known key found for this signature in database
GPG key ID: BE714B4575D6E328

View file

@ -76,8 +76,10 @@ errno_t pthread_setcanceltype(int type, int *oldtype) {
err = EINVAL;
break;
}
#ifdef MODE_DBG
STRACE("pthread_setcanceltype(%s, [%s]) → %s",
DescribeCancelType(alloca(12), 0, &type),
DescribeCancelType(alloca(12), err, oldtype), DescribeErrno(err));
#endif
return err;
}