summaryrefslogtreecommitdiffstats
path: root/crypto/thr_id.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2014-12-17 17:24:51 -0500
committerRich Salz <rsalz@openssl.org>2014-12-17 17:24:51 -0500
commitb317819b2e74f1f84925695596aa3c7487a2264d (patch)
treeea63fdae98feb3e02588d177d2b2d9897a14f473 /crypto/thr_id.c
parent179f6b2f552adb2740f30634d75edc4448f516b5 (diff)
RT3548: Remove some obsolete platforms
This commit removes BEOS. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/thr_id.c')
-rw-r--r--crypto/thr_id.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/crypto/thr_id.c b/crypto/thr_id.c
index adad72e7d3..8de903326f 100644
--- a/crypto/thr_id.c
+++ b/crypto/thr_id.c
@@ -199,8 +199,6 @@ void CRYPTO_THREADID_current(CRYPTO_THREADID *id)
CRYPTO_THREADID_set_numeric(id, (unsigned long)GetCurrentTask());
#elif defined(OPENSSL_SYS_WIN32)
CRYPTO_THREADID_set_numeric(id, (unsigned long)GetCurrentThreadId());
-#elif defined(OPENSSL_SYS_BEOS)
- CRYPTO_THREADID_set_numeric(id, (unsigned long)find_thread(NULL));
#else
/* For everything else, default to using the address of 'errno' */
CRYPTO_THREADID_set_pointer(id, (void*)&errno);
@@ -245,8 +243,6 @@ unsigned long CRYPTO_thread_id(void)
ret=(unsigned long)GetCurrentThreadId();
#elif defined(GETPID_IS_MEANINGLESS)
ret=1L;
-#elif defined(OPENSSL_SYS_BEOS)
- ret=(unsigned long)find_thread(NULL);
#else
ret=(unsigned long)getpid();
#endif