search for: guestfs_int_daemon_optgroup

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

2017 Jul 27
0
Re: [PATCH v2 00/23] Reimplement many daemon APIs in OCaml.
...that the C -> OCaml conversion would have lost some of them -- thus find a solution to make the list of used tools still coherent (i.e for both C and OCaml code), or remove it altogether. This is now dealt by removing it. > - Generating: > external available : unit -> bool = "guestfs_int_daemon_optgroup..." > etc. It's hard to generate these functions and have them added to the > correct modules (since the OCaml modules are hand-written, and it's > awkward to include generated bits in them). My suggestion was to create a single OptGroups module, with all the foo_avail...
2017 Jul 21
27
[PATCH v2 00/23] Reimplement many daemon APIs in OCaml.
...version easier to understand. - In parted.ml, didn't replace sscanf " %x", since my reading is that OCaml sscanf works the same way as C sscanf with regard to spaces, ie. it will eat any amount of leading whitespace. - Generating: external available : unit -> bool = "guestfs_int_daemon_optgroup..." etc. It's hard to generate these functions and have them added to the correct modules (since the OCaml modules are hand-written, and it's awkward to include generated bits in them). Other notes: - daemon must be linked to -ldl -lm because the OCaml runtime (libasmrun.so...