cryptothread.h 300 B

12345678910
  1. #ifndef _CRYPTOTHREAD_H_
  2. #define _CRYPTOTHREAD_H_
  3. #include <openssl/crypto.h>
  4. void init_crypto_locks(void);
  5. void crypto_locks_cleanup(void);
  6. void pthreads_thread_id(CRYPTO_THREADID *tid);
  7. void pthreads_locking_callback(int mode, int type, const char *file, int line);
  8. #endif /* _CRYPTOTHREAD_H_ */