Displaying 2 results from an estimated 2 matches for "4777,17".
Did you mean:
4727,17
2019 Aug 10
0
[PATCH libnbd 3/9] generator: Add Enum type for enumerated types / unions.
...| Path _ -> "string"
@@ -4686,6 +4735,7 @@ let ocaml_name_of_arg = function
| BytesPersistIn (n, len) -> n
| BytesPersistOut (n, len) -> n
| Closure { cbname } -> cbname
+ | Enum (n, _) -> n
| Int n -> n
| Int64 n -> n
| Path n -> n
@@ -4727,6 +4777,17 @@ exception Closed of string
";
+ List.iter (
+ fun { enum_prefix; enums } ->
+ pr "module %s : sig\n" enum_prefix;
+ pr " type t =\n";
+ List.iter (
+ fun (enum, _) ->
+ pr " | %s\n" enum
+ ) enums;
+...
2019 Aug 10
17
[PATCH libnbd 0/9] Add Enum and Flags types.
This largish series adds several new features to the generator.
Enum maps to enumerated types (like enum in C). The only current use
for this is replacing the nbd_set_tls (nbd, 0/1/2) parameter with
LIBNBD_TLS_DISABLE, LIBNBD_TLS_ALLOW, LIBNBD_TLS_REQUIRE (and natural
equivalents in other programming languages).
Flags maps to any uint32_t bitmask. It is basically a non-optional,
generalized