summaryrefslogtreecommitdiff
path: root/vendor/openssl-sys/src/handwritten/thread.rs
blob: de661e1c5c0022a937795f1c42d3eb83731f7302 (plain)
1
2
3
4
5
6
7
use super::super::*;
use libc::*;

extern "C" {
    pub fn OSSL_set_max_threads(ctx: *mut OSSL_LIB_CTX, max_threads: u64) -> c_int;
    pub fn OSSL_get_max_threads(ctx: *mut OSSL_LIB_CTX) -> u64;
}