search for: ed1ff3b

Displaying 2 results from an estimated 2 matches for "ed1ff3b".

2014 Jul 01
2
[PATCH] generator: Sort the structs.
...internal) structs +let external_structs = + List.sort compare_structs (List.filter (fun x -> not x.s_internal) structs) + +let internal_structs = + List.sort compare_structs (List.filter (fun x -> x.s_internal) structs) diff --git a/gobject/Makefile.inc b/gobject/Makefile.inc index 3b567a2..ed1ff3b 100644 --- a/gobject/Makefile.inc +++ b/gobject/Makefile.inc @@ -23,26 +23,26 @@ guestfs_gobject_headers= \ include/guestfs-gobject.h \ include/guestfs-gobject/session.h \ include/guestfs-gobject/tristate.h \ + include/guestfs-gobject/struct-application.h \ + include/guestfs-gobject/stru...
2014 Sep 22
2
[PATCH] New APIs: Implement stat calls that return nanosecond timestamps (RHBZ#1144891).
...FInt64; + "st_spare4", FInt64; + "st_spare5", FInt64; + "st_spare6", FInt64; + ]; + s_camel_name = "StatNS" }; { defaults with s_name = "statvfs"; s_cols = [ diff --git a/gobject/Makefile.inc b/gobject/Makefile.inc index ed1ff3b..c93dace 100644 --- a/gobject/Makefile.inc +++ b/gobject/Makefile.inc @@ -38,6 +38,7 @@ guestfs_gobject_headers= \ include/guestfs-gobject/struct-mdstat.h \ include/guestfs-gobject/struct-partition.h \ include/guestfs-gobject/struct-stat.h \ + include/guestfs-gobject/struct-statns.h \...