cryptlib_int.h 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include <openssl/core.h>
  10. #include "internal/cryptlib.h"
  11. /* This file is not scanned by mkdef.pl, whereas cryptlib.h is */
  12. int ossl_init_thread_start(const void *index, void *arg,
  13. OSSL_thread_stop_handler_fn handfn);
  14. int ossl_init_thread_deregister(void *index);
  15. int ossl_init_thread(void);
  16. void ossl_cleanup_thread(void);
  17. void ossl_ctx_thread_stop(void *arg);
  18. /*
  19. * OPENSSL_INIT flags. The primary list of these is in crypto.h. Flags below
  20. * are those omitted from crypto.h because they are "reserved for internal
  21. * use".
  22. */
  23. # define OPENSSL_INIT_ZLIB 0x00010000L
  24. # define OPENSSL_INIT_BASE_ONLY 0x00040000L
  25. int ossl_trace_init(void);
  26. void ossl_trace_cleanup(void);
  27. void ossl_malloc_setup_failures(void);