search for: push_

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

Did you mean: pushl
2013 Feb 04
1
[PATCH] generator: Add visibility to action struct
...ter (pr "%s.java\n") jtyps diff --git a/generator/lua.ml b/generator/lua.ml index 042a8a0..1878844 100644 --- a/generator/lua.ml +++ b/generator/lua.ml @@ -107,7 +107,7 @@ static void free_strings (char **r); | typ, (RStructListOnly | RStructAndList) -> pr "static void push_%s (lua_State *L, struct guestfs_%s *v);\n" typ typ; pr "static void push_%s_list (lua_State *L, struct guestfs_%s_list *v);\n" typ typ - ) (rstructs_used_by all_functions); + ) (rstructs_used_by external_functions); pr "\ @@ -629,7 +629,7 @@ guestfs_lua_delete_ev...
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.
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers. These aren't valid for global names in C++. (http://stackoverflow.com/a/228797) These large but completely mechanical patches change the illegal identifiers to legal ones. Rich.