search for: add_ret_error_label

Displaying 3 results from an estimated 3 matches for "add_ret_error_label".

2016 Feb 05
7
[PATCH 0/7] lib: Stop exporting the safe_malloc, etc. functions.
The safe_malloc (etc) functions call g->abort_fn on failure. That's not appropriate for language bindings, and we never intended that these internal functions be used from language bindings, that was just a historical accident. This patch series removes any external use of the safe_* functions. Rich.
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...|| List.exists (function | StringList _ -> true - | DeviceList _ -> true | _ -> false) args || List.exists (function | OStringList _ -> true @@ -772,13 +753,7 @@ throw_out_of_memory (JNIEnv *env, const char *msg) let add_ret_error_label = ref false in List.iter ( function - | Pathname n - | Device n | Mountable n | Dev_or_Path n | Mountable_or_Path n - | String n - | FileIn n - | FileOut n - | Key n - | GUID n -> + | String (_, n) -> pr &quo...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.