summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJ.W. Jagersma <jwjagersma@gmail.com>2022-09-25 19:04:31 +0200
committerTomas Mraz <tomas@openssl.org>2022-09-29 12:00:30 +0200
commit651255941c49a5089dfc011f2abd636433da8b82 (patch)
tree9cd991c2b4dbd1093cc461d282a4df01764d81de /include
parent29d82bd95b6ef3428c7e776221612a083994219d (diff)
djgpp: Use usleep() for ossl_sleep()
This part failed to compile due to a circular dependency between internal/e_os.h and internal/time.h, when ossl_sleep() falls back to a busy wait. However, djgpp has a usleep function, so it can use the regular Unix version of ossl_sleep(). It's not great though. The resolution is only ~55ms, and it may break when a user program hooks the timer interrupt without periodically updating BIOS time. A high-resolution alternative is uclock(), but that is generally less desirable since it reprograms the system timer. The circular dependency is still there and may still cause trouble for other platforms. CLA: trivial Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19274)
Diffstat (limited to 'include')
-rw-r--r--include/internal/e_os.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/internal/e_os.h b/include/internal/e_os.h
index 8b0c3a933c..059fae4040 100644
--- a/include/internal/e_os.h
+++ b/include/internal/e_os.h
@@ -287,7 +287,7 @@ struct servent *getservbyname(const char *name, const char *proto);
/* end vxworks */
/* system-specific variants defining ossl_sleep() */
-#ifdef OPENSSL_SYS_UNIX
+#if defined(OPENSSL_SYS_UNIX) || defined(__DJGPP__)
# include <unistd.h>
static ossl_inline void ossl_sleep(unsigned long millis)
{