Commit f03ee913 authored by Ian Lance Taylor's avatar Ian Lance Taylor

misc/cgo/test: add retry loop around pthread_create in TestSigprocmask

This is the same retry loop we use in _cgo_try_pthread_create in runtime/cgo.

Fixes #25078

Change-Id: I7ef4d4fc7fb89cbfb674c4f93cbdd7a033dd8983
Reviewed-on: https://go-review.googlesource.com/121096
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent fbfd38c5
...@@ -4,10 +4,12 @@ ...@@ -4,10 +4,12 @@
// +build !windows // +build !windows
#include <errno.h>
#include <signal.h> #include <signal.h>
#include <stdlib.h> #include <stdlib.h>
#include <pthread.h> #include <pthread.h>
#include <stdio.h> #include <stdio.h>
#include <time.h>
#include <unistd.h> #include <unistd.h>
extern void IntoGoAndBack(); extern void IntoGoAndBack();
...@@ -28,11 +30,22 @@ static void* sigthreadfunc(void* unused) { ...@@ -28,11 +30,22 @@ static void* sigthreadfunc(void* unused) {
} }
int RunSigThread() { int RunSigThread() {
int tries;
pthread_t thread; pthread_t thread;
int r; int r;
struct timespec ts;
r = pthread_create(&thread, NULL, &sigthreadfunc, NULL); for (tries = 0; tries < 20; tries++) {
if (r != 0) r = pthread_create(&thread, NULL, &sigthreadfunc, NULL);
return r; if (r == 0) {
return pthread_join(thread, NULL); return pthread_join(thread, NULL);
}
if (r != EAGAIN) {
return r;
}
ts.tv_sec = 0;
ts.tv_nsec = (tries + 1) * 1000 * 1000; // Milliseconds.
nanosleep(&ts, NULL);
}
return EAGAIN;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment