search for: e752bfe

Displaying 1 result from an estimated 1 matches for "e752bfe".

Did you mean: e72bfe0
2016 Aug 03
3
[PATCH] mllib: move _exit from v2v as Exit module
...lib.h> +#include <unistd.h> + +#include <caml/mlvalues.h> + +extern int guestfs_int_mllib_exit (value rv) __attribute__((noreturn)); + +int +guestfs_int_mllib_exit (value rv) +{ + _exit (Int_val (rv)); +} diff --git a/mllib/exit.ml b/mllib/exit.ml new file mode 100644 index 0000000..e752bfe --- /dev/null +++ b/mllib/exit.ml @@ -0,0 +1,19 @@ +(* libguestfs OCaml tools common code + * Copyright (C) 2016 Red Hat Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software F...