diff options
author | rpj <rpj> | 2006-01-24 13:59:57 +0000 |
---|---|---|
committer | rpj <rpj> | 2006-01-24 13:59:57 +0000 |
commit | 205f28fa88668e1ed699560219d543ae82b3d523 (patch) | |
tree | a6400f40cd1636c600c6d6c0b07d921858a512ce | |
parent | 32ecc151353aad78fb49694d0bb1926e7be1c5b0 (diff) |
''
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | pthread.h | 4 | ||||
-rw-r--r-- | pthread_cancel.c | 4 |
3 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2006-01-25 Prashant Thakre <prashant.thakre at gmail.com> + + * pthread_cancel.c: Added _M_IA64 register context support. + 2005-05-13 Ross Johnson <ross at callisto.canberra.edu.au> * pthread_kill.c (pthread_kill): Remove check for Win32 thread @@ -37,8 +37,8 @@ * See the README file for an explanation of the pthreads-win32 version * numbering scheme and how the DLL is named etc. */ -#define PTW32_VERSION 2,7,0,0 -#define PTW32_VERSION_STRING "2, 7, 0, 0\0" +#define PTW32_VERSION 2,8,0,0 +#define PTW32_VERSION_STRING "2, 8, 0, 0\0" /* There are three implementations of cancel cleanup. * Note that pthread.h is included in both application diff --git a/pthread_cancel.c b/pthread_cancel.c index 971edc8..1118977 100644 --- a/pthread_cancel.c +++ b/pthread_cancel.c @@ -41,6 +41,10 @@ #define PTW32_PROGCTR(Context) ((Context).Eip) #endif +#if defined (_M_IA64) +#define PTW32_PROGCTR(Context) ((Context).StIIP) +#endif + #if defined(_MIPS_) #define PTW32_PROGCTR(Context) ((Context).Fir) #endif |