If errno is ENXIO in BSS_new_file(), set BIO_R_NO_SUCH_FILE
[openssl.git] / crypto / async / async_err.c
1 /*
2  * Generated by util/mkerr.pl DO NOT EDIT
3  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
4  *
5  * Licensed under the OpenSSL license (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  */
10
11 #include <stdio.h>
12 #include <openssl/err.h>
13 #include <openssl/async.h>
14
15 /* BEGIN ERROR CODES */
16 #ifndef OPENSSL_NO_ERR
17
18 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_ASYNC,func,0)
19 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_ASYNC,0,reason)
20
21 static ERR_STRING_DATA ASYNC_str_functs[] = {
22     {ERR_FUNC(ASYNC_F_ASYNC_CTX_NEW), "async_ctx_new"},
23     {ERR_FUNC(ASYNC_F_ASYNC_INIT_THREAD), "ASYNC_init_thread"},
24     {ERR_FUNC(ASYNC_F_ASYNC_JOB_NEW), "async_job_new"},
25     {ERR_FUNC(ASYNC_F_ASYNC_PAUSE_JOB), "ASYNC_pause_job"},
26     {ERR_FUNC(ASYNC_F_ASYNC_START_FUNC), "async_start_func"},
27     {ERR_FUNC(ASYNC_F_ASYNC_START_JOB), "ASYNC_start_job"},
28     {0, NULL}
29 };
30
31 static ERR_STRING_DATA ASYNC_str_reasons[] = {
32     {ERR_REASON(ASYNC_R_FAILED_TO_SET_POOL), "failed to set pool"},
33     {ERR_REASON(ASYNC_R_FAILED_TO_SWAP_CONTEXT), "failed to swap context"},
34     {ERR_REASON(ASYNC_R_INIT_FAILED), "init failed"},
35     {ERR_REASON(ASYNC_R_INVALID_POOL_SIZE), "invalid pool size"},
36     {0, NULL}
37 };
38
39 #endif
40
41 int ERR_load_ASYNC_strings(void)
42 {
43 #ifndef OPENSSL_NO_ERR
44
45     if (ERR_func_error_string(ASYNC_str_functs[0].error) == NULL) {
46         ERR_load_strings(0, ASYNC_str_functs);
47         ERR_load_strings(0, ASYNC_str_reasons);
48     }
49 #endif
50     return 1;
51 }