search for: ielem

Displaying 4 results from an estimated 4 matches for "ielem".

Did you mean: elem
2017 May 04
1
[PATCH] perl: drop %guestfs_introspection stuff
...tions |> external_functions |> sort); - pr ");\n\n"; - - pr "# Add aliases to the introspection hash.\n"; - let i = ref 0 in - List.iter ( - fun { name = name; non_c_aliases = non_c_aliases } -> - List.iter ( - fun alias -> - pr "my %%ielem%d = %%{$guestfs_introspection{%s}};\n" !i name; - pr "$guestfs_introspection{%s} = \\%%ielem%d;\n" alias !i; - incr i - ) non_c_aliases - ) (actions |> external_functions |> sort); - pr "\n"; - (* End of file. *) pr "\ 1; @@ -1032,...
2013 Feb 04
1
[PATCH] generator: Add visibility to action struct
...t; %S,\n" shortdesc; pr " },\n"; - ) all_functions_sorted; + ) external_functions_sorted; pr ");\n\n"; pr "# Add aliases to the introspection hash.\n"; @@ -969,7 +967,7 @@ handlers and threads. pr "$guestfs_introspection{%s} = \\%%ielem%d;\n" alias !i; incr i ) non_c_aliases - ) all_functions_sorted; + ) external_functions_sorted; pr "\n"; (* End of file. *) diff --git a/generator/php.ml b/generator/php.ml index 4ed7b30..d457507 100644 --- a/generator/php.ml +++ b/generator/php.ml @@ -53,...
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.
2012 Jul 14
6
[PATCH 0/6] Allow non-optargs functions to gain optional arguments.
This rather complex set of patches allow non-optargs functions to gain optional arguments, while preserving source and binary backwards compatibility. The problem is that we cannot add an optional argument to an existing function. For example, we might want to add flags to the 'lvresize' API which currently has no optional arguments.