search for: emit_ocaml_copy_list_funct

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

2009 Aug 28
1
[PATCHES] avoid more warnings
...3.g81fb2 >From ba5842c1147f4463fce7f613618938fd5b9a1c1a Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Fri, 28 Aug 2009 13:53:36 +0200 Subject: [PATCH libguestfs 2/3] generator.ml: avoid defined-but-not-used warnings in guestfs_c_actions.c * src/generator.ml (emit_ocaml_copy_list_function): New function. Emit a function definition only if it will be used. --- src/generator.ml | 53 ++++++++++++++++++++++++++++++++--------------------- 1 files changed, 32 insertions(+), 21 deletions(-) diff --git a/src/generator.ml b/src/generator.ml index fa7d240..569e1a1 100755 --- a/src/gen...
2013 Feb 04
1
[PATCH] generator: Add visibility to action struct
...List.iter (fun alias -> pr " method %s = self#%s\n" alias name) non_c_aliases - ) all_functions_sorted; + ) external_functions_sorted; pr " end\n" @@ -431,7 +431,7 @@ copy_table (char * const * argv) (* generate the function for typ *) emit_ocaml_copy_list_function typ | typ, _ -> () (* empty *) - ) (rstructs_used_by all_functions); + ) (rstructs_used_by external_functions); (* The wrappers. *) List.iter ( @@ -669,7 +669,7 @@ copy_table (char * const * argv) pr "}\n"; pr "\n" ) - ) all_functio...
2016 Sep 02
6
[PATCH 0/4] generator: Some work to split large C files
By splitting up large C files we can make parallel compiles a bit faster. Rich.