diff options
Diffstat (limited to 'winsup/cygwin/thread.h')
-rw-r--r-- | winsup/cygwin/thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/thread.h b/winsup/cygwin/thread.h index 37296e5e5..b1969ed81 100644 --- a/winsup/cygwin/thread.h +++ b/winsup/cygwin/thread.h @@ -401,7 +401,7 @@ public: virtual void testcancel (); static HANDLE get_cancel_event (); - static void static_cancel_self (); + static void static_cancel_self () __attribute__ ((noreturn)); virtual int setcancelstate (int state, int *oldstate); virtual int setcanceltype (int type, int *oldtype); @@ -454,7 +454,7 @@ private: void postcreate (); bool create_cancel_event (); static void set_tls_self_pointer (pthread *); - void cancel_self (); + void cancel_self () __attribute__ ((noreturn)); DWORD get_thread_id (); }; |