summaryrefslogtreecommitdiffstats
path: root/src/H5TSprivate.h
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-02-03 17:59:14 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2020-05-06 20:37:14 (GMT)
commit763d7a778e7b08a0f6bffcd6c471dbcd02147141 (patch)
treea772aef0ea894056bb4e0210f3a28588011edcb5 /src/H5TSprivate.h
parent25f30e7d63ac3c567b38233a2d4b6d3472754754 (diff)
downloadhdf5-763d7a778e7b08a0f6bffcd6c471dbcd02147141.zip
hdf5-763d7a778e7b08a0f6bffcd6c471dbcd02147141.tar.gz
hdf5-763d7a778e7b08a0f6bffcd6c471dbcd02147141.tar.bz2
Replace pthread_self_ulong() with H5TS_thread_id(). The POSIX Threads
implementation ought to be portable to any system that has POSIX Threads. On Windows, I use the same API call as before.
Diffstat (limited to 'src/H5TSprivate.h')
-rw-r--r--src/H5TSprivate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5TSprivate.h b/src/H5TSprivate.h
index 9e093a6..76cf8f1 100644
--- a/src/H5TSprivate.h
+++ b/src/H5TSprivate.h
@@ -68,7 +68,7 @@ H5_DLL void H5TS_win32_process_exit(void);
H5_DLL herr_t H5TS_win32_thread_enter(void);
H5_DLL herr_t H5TS_win32_thread_exit(void);
-
+#define H5TS_thread_id() ((unsigned long)GetCurrentThreadId())
#else /* H5_HAVE_WIN_THREADS */
@@ -102,6 +102,7 @@ typedef pthread_once_t H5TS_once_t;
#define H5TS_mutex_init(mutex) pthread_mutex_init(mutex, NULL)
#define H5TS_mutex_lock_simple(mutex) pthread_mutex_lock(mutex)
#define H5TS_mutex_unlock_simple(mutex) pthread_mutex_unlock(mutex)
+H5_DLL unsigned long H5TS_thread_id(void);
#endif /* H5_HAVE_WIN_THREADS */