summaryrefslogtreecommitdiffstats
path: root/src/H5private.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/H5private.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/H5private.h')
-rw-r--r--src/H5private.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/H5private.h b/src/H5private.h
index 7ff0c87..e7626ac 100644
--- a/src/H5private.h
+++ b/src/H5private.h
@@ -1571,11 +1571,6 @@ extern char *strdup(const char *s);
#define HDpthread_self() pthread_self()
#endif /* HDpthread_self */
-/* Use this version of pthread_self for printing the thread ID */
-#ifndef HDpthread_self_ulong
- #define HDpthread_self_ulong() ((unsigned long)pthread_self())
-#endif /* HDpthread_self_ulong */
-
/* Macro for "stringizing" an integer in the C preprocessor (use H5_TOSTRING) */
/* (use H5_TOSTRING, H5_STRINGIZE is just part of the implementation) */
#define H5_STRINGIZE(x) #x