Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/pthread.cc')
-rw-r--r--winsup/cygwin/pthread.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/winsup/cygwin/pthread.cc b/winsup/cygwin/pthread.cc
index 0484f0412..d7c8fccfd 100644
--- a/winsup/cygwin/pthread.cc
+++ b/winsup/cygwin/pthread.cc
@@ -12,6 +12,7 @@
#include "winsup.h"
#include "thread.h"
+#include "errno.h"
extern "C"
{
@@ -173,7 +174,9 @@ pthread_continue (pthread_t thread)
unsigned long
pthread_getsequence_np (pthread_t * thread)
{
- return __pthread_getsequence_np (thread);
+ if (!pthread::isGoodObject (thread))
+ return EINVAL;
+ return (*thread)->getsequence_np();
}
/* Thread SpecificData */