search for: sock_

Displaying 3 results from an estimated 3 matches for "sock_".

Did you mean: sock
2015 Feb 09
5
Re: Patchable build problems on OS X 10.10
...,18 @@ > > #include "guestfs-internal-actions.h" > > #include "guestfs_protocol.h" > > > > +/* Fixes for Mac OS X */ > > +#if defined __APPLE__ && defined __MACH__ > > +#include <sys/un.h> > > +#endif > > +#ifndef SOCK_CLOEXEC > > +# define SOCK_CLOEXEC O_CLOEXEC > > +#endif > > +#ifndef SOCK_NONBLOCK > > +# define SOCK_NONBLOCK O_NONBLOCK > > +#endif > > +/* End of fixes for Mac OS X */ > > + > > /* Check minimum required version of libvirt. The libvirt backend &g...
2012 Apr 27
1
select periodically returns 0 then read ETIMEDOUT
...nt_handler: idle_"..., 68) = 68 select(29, [6 8 28], [], NULL, {59, 994672}) = 1 (in [28], left {14, 934695}) read(28, 0x7fff13d0e6c0, 4) = -1 ETIMEDOUT (Connection timed out) stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0 socket(PF_FILE, 0x80002 /* SOCK_??? */, 0) = 34 connect(34, {sa_family=AF_FILE, path="/dev/log"}, 110) = 0 sendto(34, "<27>Apr 26 00:01:01 smbd[32115]:"..., 108, MSG_NOSIGNAL, NULL, 0) = 108 geteuid() = 0 write(33, "[2012/04/26 00:01:01.740501, 0]"..., 75) = 75 get...
2015 Feb 09
0
Re: Patchable build problems on OS X 10.10
...7 Richard W.M. Jones wrote: > > On Thu, Feb 05, 2015 at 10:53:06PM +0000, Margaret Lewicka wrote: > > > +/* Fixes for Mac OS X */ > > > +#if defined __APPLE__ && defined __MACH__ > > > +#include <sys/un.h> > > > +#endif > > > +#ifndef SOCK_CLOEXEC > > > +# define SOCK_CLOEXEC O_CLOEXEC > > > +#endif > > > +#ifndef SOCK_NONBLOCK > > > +# define SOCK_NONBLOCK O_NONBLOCK > > > +#endif > > > +/* End of fixes for Mac OS X */ > > > + > > > /* Check minimum required ver...