Rename `init` methods to `initialize`
[babeltrace.git] / include / babeltrace2 / func-status.h
1 /*
2 * No include guards here: it is safe to include this file multiple
3 * times.
4 */
5
6 /*
7 * Copyright (c) 2010-2019 EfficiOS Inc. and Linux Foundation
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
26 */
27
28 #ifndef __BT_IN_BABELTRACE_H
29 # error "Please include <babeltrace2/babeltrace.h> instead."
30 #endif
31
32 /*
33 * This is NOT part of the API.
34 *
35 * Do NOT use a `__BT_FUNC_STATUS_*` value in user code: this inhibits
36 * precious type checking.
37 */
38
39 /* Value is too large for the given data type */
40 #ifndef __BT_FUNC_STATUS_OVERFLOW_ERROR
41 # define __BT_FUNC_STATUS_OVERFLOW_ERROR -75
42 #endif
43
44
45 /* Memory allocation error */
46 #ifndef __BT_FUNC_STATUS_MEMORY_ERROR
47 # define __BT_FUNC_STATUS_MEMORY_ERROR -12
48 #endif
49
50 /* General error */
51 #ifndef __BT_FUNC_STATUS_ERROR
52 # define __BT_FUNC_STATUS_ERROR -1
53 #endif
54
55 /* Saul Goodman */
56 #ifndef __BT_FUNC_STATUS_OK
57 # define __BT_FUNC_STATUS_OK 0
58 #endif
59
60 /* End of iteration/consumption */
61 #ifndef __BT_FUNC_STATUS_END
62 # define __BT_FUNC_STATUS_END 1
63 #endif
64
65 /* Something can't be found */
66 #ifndef __BT_FUNC_STATUS_NOT_FOUND
67 # define __BT_FUNC_STATUS_NOT_FOUND 2
68 #endif
69
70 /* Object is interrupted */
71 #ifndef __BT_FUNC_STATUS_INTERRUPTED
72 # define __BT_FUNC_STATUS_INTERRUPTED 4
73 #endif
74
75 /* No match found */
76 #ifndef __BT_FUNC_STATUS_NO_MATCH
77 # define __BT_FUNC_STATUS_NO_MATCH 6
78 #endif
79
80 /* Try operation again later */
81 #ifndef __BT_FUNC_STATUS_AGAIN
82 # define __BT_FUNC_STATUS_AGAIN 11
83 #endif
84
85 /* Unknown query object */
86 #ifndef __BT_FUNC_STATUS_UNKNOWN_OBJECT
87 # define __BT_FUNC_STATUS_UNKNOWN_OBJECT 42
88 #endif
This page took 0.031414 seconds and 4 git commands to generate.