diff options
Diffstat (limited to 'winsup/cygwin/pinfo.h')
-rw-r--r-- | winsup/cygwin/pinfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/pinfo.h b/winsup/cygwin/pinfo.h index 7f46850a6..89ed5468c 100644 --- a/winsup/cygwin/pinfo.h +++ b/winsup/cygwin/pinfo.h @@ -116,13 +116,13 @@ public: return thread2signal ? thread2signal->win32_obj_id : hMainThread; } - inline void setthread2signal (void *thr) {thread2signal = (ThreadItem *) thr;} + inline void setthread2signal (void *thr) {thread2signal = (pthread *) thr;} private: struct sigaction sigs[NSIG]; sigset_t sig_mask; /* one set for everything to ignore. */ LONG _sigtodo[NSIG + __SIGOFFSET]; - ThreadItem *thread2signal; // NULL means means thread any other means a pthread + pthread *thread2signal; // NULL means means thread any other means a pthread }; class pinfo |