Sponsor:

Your company here, and a link to your site. Click to find out more.

OSSL_sleep.3ossl - Man Page

delay execution for a specified number of milliseconds

Synopsis

 #include <openssl/crypto.h>

 void OSSL_sleep(uint64_t millis);

Description

OSSL_sleep() is a convenience function to delay execution of the calling thread for (at least) millis milliseconds.  The delay is not guaranteed; it may be affected by system activity, by the time spent processing the call, limitation on the underlying system call parameter size or by system timer granularity.

In particular on Windows the maximum amount of time it will sleep is 49 days and on systems where the regular sleep(3) is used as the underlying system call the maximum sleep time is about 136 years.

Return Values

OSSL_sleep() does not return any value.

History

OSSL_sleep() was added in OpenSSL 3.2.

Info

2024-04-04 3.2.1 OpenSSL