Hi,
There is a bug in conformance/interface/pthread_key_create/speculative/5-1.c:
static pthread_key_t keys[5];
is not enough, it should be
static pthread_key_t keys[PTHREAD_KEYS_MAX];
Log in to post a comment.