search for: dehead

Displaying 7 results from an estimated 7 matches for "dehead".

Did you mean: dqhead
2015 Nov 04
3
Re: [PATCH] launch: add missing headers on Darwin
...o. However, these same header files have been removed in 3b17152ec399acb35b23331d2c3b4f424a68824a: commit 3b17152ec399acb35b23331d2c3b4f424a68824a Author: Richard W.M. Jones <rjones@redhat.com> Date: Tue Sep 29 21:58:41 2015 +0100 lib: Remove unused header files. I used ESR's deheader program to look for unused includes. I then examined each instance by hand, and also test-compiled (on Linux). ...which makes me suspect it will happen again at some point unless there is some indication that it's a non-Linux include. -- Margaret
2015 Sep 30
1
Re: [PATCH 4/4] lib: Remove unused header files.
On Tuesday 29 September 2015 22:06:13 Richard W.M. Jones wrote: > I used ESR's deheader program to look for unused includes. I then > examined each instance by hand, and also test-compiled (on Linux). Mostly LGTM, there just a couple of notes below: > --- a/src/fuse.c > +++ b/src/fuse.c > @@ -21,7 +21,6 @@ > #include <stdio.h> > #include <stdlib.h>...
2015 Nov 04
0
Re: [PATCH] launch: add missing headers on Darwin
...removed in > 3b17152ec399acb35b23331d2c3b4f424a68824a: > > commit 3b17152ec399acb35b23331d2c3b4f424a68824a > Author: Richard W.M. Jones <rjones@redhat.com> > Date: Tue Sep 29 21:58:41 2015 +0100 > > lib: Remove unused header files. > > I used ESR's deheader program to look for unused includes. I then > examined each instance by hand, and also test-compiled (on Linux). > > ...which makes me suspect it will happen again at some point unless there > is some indication that it's a non-Linux include. Yup, sorry about that one. Per...
2015 Nov 04
3
[PATCH] launch: add missing headers on Darwin
Including sys/un.h for sockaddr_un and sys/fcntl.h for O_CLOEXEC/O_NONBLOCK. --- src/launch-libvirt.c | 1 + src/launch-unix.c | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/src/launch-libvirt.c b/src/launch-libvirt.c index 1649884..ad07210 100644 --- a/src/launch-libvirt.c +++ b/src/launch-libvirt.c @@ -52,6 +52,7 @@ /* Fixes for Mac OS X */ #if defined __APPLE__ &&
2015 Sep 29
8
[PATCH 1/4] lib: actions: Remove some unused header files.
--- generator/c.ml | 2 -- 1 file changed, 2 deletions(-) diff --git a/generator/c.ml b/generator/c.ml index 055b683..963cf21 100644 --- a/generator/c.ml +++ b/generator/c.ml @@ -1213,9 +1213,7 @@ and generate_client_actions hash () = #include <stdlib.h> #include <stdint.h> #include <inttypes.h> -#include <sys/types.h> #include <sys/stat.h> -#include
2016 Jan 06
0
ANNOUNCE: libguestfs 1.32 released
...Pino Toscano). The virt-v2v test harness allows us to boot the test guests at fixed dates in the past, ensuring that Windows reactivation doesn't kick in. There is a new internal API for reading/writing a subprocess via a pipe from library code. Used "deheader" program to remove unused "#include" directives. In OCaml tools, the "Char" and "String" modules now implicitly reference the "Common_utils.Char" and "Common_utils.String" modules (instead of the ones from stdlib). The...
2015 Sep 29
0
[PATCH 4/4] lib: Remove unused header files.
I used ESR's deheader program to look for unused includes. I then examined each instance by hand, and also test-compiled (on Linux). --- src/actions-support.c | 4 ---- src/alloc.c | 3 --- src/appliance.c | 8 -------- src/conn-socket.c | 1 - src/copy-in-out.c | 2 -- sr...