search for: 28acb50

Displaying 3 results from an estimated 3 matches for "28acb50".

2020 Sep 29
2
[PATCH libnbd] generator: Add SizeT type, maps to C size_t.
...", c_%s" n + | SizeT n -> pr ", c_%s" n | SockAddrAndLen (n, len) -> pr ", c_%s, c_%s" n len | String n -> pr ", c_%s" n | StringList n -> pr ", &c_%s[0]" n diff --git a/generator/OCaml.ml b/generator/OCaml.ml index 28acb50..81e5529 100644 --- a/generator/OCaml.ml +++ b/generator/OCaml.ml @@ -50,6 +50,7 @@ and ocaml_arg_to_string = function | Int64 _ -> "int64" | Path _ -> "string" | SockAddrAndLen _ -> "string" (* XXX not impl *) + | SizeT _ -> "int" (* OC...
2020 Sep 11
0
[libnbd PATCH v2 2/5] generator: Refactor filtering of accepted OFlags
...List.iter ( function | OClosure { cbname} -> pr ", c_%s" cbname - | OFlags (n, _) -> pr ", c_%s" n + | OFlags (n, _, _) -> pr ", c_%s" n ) optargs; pr ")\n"; diff --git a/generator/OCaml.ml b/generator/OCaml.ml index 43b3679..28acb50 100644 --- a/generator/OCaml.ml +++ b/generator/OCaml.ml @@ -72,7 +72,7 @@ and ocaml_ret_to_string = function and ocaml_optarg_to_string = function | OClosure { cbname; cbargs } -> sprintf "?%s:(%s)" cbname (ocaml_closuredecl_to_string cbargs) - | OFlags (n, { flag_prefix })...
2020 Sep 11
10
[libnbd PATCH v2 0/5] Add knobs for client- vs. server-side validation
In v2: - now based on my proposal to add LIBNBD_SHUTDOWN_IMMEDIATE - four flags instead of two: STRICT_FLAGS is new (patch 4), and STRICT_BOUNDS is separate from STRICT_ZERO_SIZE (patch 5) - various refactorings for more shared code and less duplication Eric Blake (5): api: Add xxx_MASK constant for each Flags type generator: Refactor filtering of accepted OFlags api: Add