summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrpj <rpj>2007-05-26 14:57:19 +0000
committerrpj <rpj>2007-05-26 14:57:19 +0000
commitb1dc8324d03053ffb427424c8de046863757d8ec (patch)
tree0080dbfd318a96acff7fcb066ac8e95e56acd9dc
parentdc5c626bef9483c717bee53568aaf5813a551019 (diff)
Added pthread_getw32threadid_np function untested
-rw-r--r--README.NONPORTABLE10
-rw-r--r--pthread.h4
-rw-r--r--pthread_getw32threadhandle_np.c12
3 files changed, 26 insertions, 0 deletions
diff --git a/README.NONPORTABLE b/README.NONPORTABLE
index e138758..192fef6 100644
--- a/README.NONPORTABLE
+++ b/README.NONPORTABLE
@@ -72,6 +72,16 @@ pthread_getw32threadhandle_np(pthread_t thread);
Applications can use the win32 handle to set
win32 specific attributes of the thread.
+DWORD
+pthread_getw32threadid_np (pthread_t thread)
+
+ Returns the win32 thread ID that the POSIX
+ thread "thread" is running as.
+
+ Only valid when the library is built where
+ ! defined (__MINGW32__) || defined (__MSVCRT__) || defined (__DMC__)
+ and otherwise returns 0.
+
int
pthread_mutexattr_setkind_np(pthread_mutexattr_t * attr, int kind)
diff --git a/pthread.h b/pthread.h
index 1fd465b..9026111 100644
--- a/pthread.h
+++ b/pthread.h
@@ -1184,6 +1184,10 @@ PTW32_DLLPORT void * PTW32_CDECL pthread_timechange_handler_np(void *);
* Returns the Win32 HANDLE for the POSIX thread.
*/
PTW32_DLLPORT HANDLE PTW32_CDECL pthread_getw32threadhandle_np(pthread_t thread);
+/*
+ * Returns the win32 thread ID for POSIX thread.
+ */
+PTW32_DLLPORT DWORD PTW32_CDECL pthread_getw32threadid_np (pthread_t thread);
/*
diff --git a/pthread_getw32threadhandle_np.c b/pthread_getw32threadhandle_np.c
index 9d22def..309a8f2 100644
--- a/pthread_getw32threadhandle_np.c
+++ b/pthread_getw32threadhandle_np.c
@@ -51,3 +51,15 @@ pthread_getw32threadhandle_np (pthread_t thread)
{
return ((ptw32_thread_t *)thread.p)->threadH;
}
+
+/*
+ * pthread_getw32threadid_np()
+ *
+ * Returns the win32 thread id that the POSIX
+ * thread "thread" is running as.
+ */
+DWORD
+pthread_getw32threadid_np (pthread_t thread)
+{
+ return ((ptw32_thread_t *)thread.p)->thread;
+}