search for: wuntraced

Displaying 6 results from an estimated 6 matches for "wuntraced".

Did you mean: untraced
2004 Dec 10
5
win32-process 0.3.1 is out
Hi all, Just wanted to let you know that I released 0.3.1 last night. This addresses Bug #712 and incorporates Patches #1087 and #1137 (thanks Aslak). I''ll try to get an open4 implementation out this weekend, though I noticed that Aslak''s patch is different than what Park originally had, so I''ll have to decide which I prefer, or if they can be blended somehow.
2014 Oct 03
0
Fwd: mksh-static segfaults on continued jobs
...jobs.c 10 Jun 2014 22:17:33 -0000 1.104 +++ jobs.c 3 Oct 2014 04:33:32 -0000 @@ -1339,7 +1339,7 @@ do { #ifndef MKSH_NOPROSPECTOFWORK pid = waitpid(-1, &status, (WNOHANG | -#ifdef WCONTINUED +#if defined(WCONTINUED) && defined(WIFCONTINUED) WCONTINUED | #endif WUNTRACED)); -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (900, 'testing'), (700, 'unstable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.14-2-amd64 (SMP w/4 CPU cores) Locale: LANG=pl_PL.UTF-8, LC_CTYPE=en_US.UTF-8 (cha...
2001 Feb 28
2
Samba Compile problems
...s/capability.h:23, from include/includes.h:323, from smbd/server.c:23: /usr/include/linux/wait.h:4: warning: `WNOHANG' redefined /usr/include/bits/waitflags.h:26: warning: this is the location of the previous definition /usr/include/linux/wait.h:5: warning: `WUNTRACED' redefined /usr/include/bits/waitflags.h:27: warning: this is the location of the previous definition In file included from /usr/include/linux/capability.h:13, from /usr/include/sys/capability.h:23, from include/includes.h:323, from smbd/se...
1999 Sep 29
0
building on Red Hat 5.2
...linux/fs.h:12, from /usr/include/linux/smb_fs.h:12, from client/smbmount.c:28: /usr/include/linux/wait.h:4: warning: `WNOHANG' redefined /usr/include/waitflags.h:25: warning: this is the location of the previous definition /usr/include/linux/wait.h:5: warning: `WUNTRACED' redefined /usr/include/waitflags.h:26: warning: this is the location of the previous definition In file included from /usr/include/linux/net.h:23, from /usr/include/linux/fs.h:15, from /usr/include/linux/smb_fs.h:12, from client/smbmount.c:28:...
2019 Feb 19
2
Re: [PATCH nbdkit 4/4] Add linuxdisk plugin.
...; > + } > + else if (WIFSTOPPED (r)) { > + nbdkit_error ("mke2fs command was stopped by signal %d", WSTOPSIG (r)); > + return -1; > + } Is WIFSTOPPED() even a possible result of system()? 'man waitpid' says this status is only possible for a call made with WUNTRACED, which seems contradictory to system() running the command to completion without tracing. > + > + return 0; > +} > + > +static int > +visit (const char *dir, ext2_filsys fs, ext2_ino_t dir_ino, > + struct file **files, size_t *nr_files) > +{ > + error2: > + c...
2019 Feb 19
7
[PATCH nbdkit 0/4] New plugin: Add linuxdisk plugin.
Turns out Japanese trains are good for coding! In supermin we have a bunch of code to create the libguestfs appliance. It creates it directly using libext2fs (part of e2fsprogs). We can use the same technique to create ext2 virtual disks in nbdkit, which is what this new plugin does. Why a new plugin instead of modifying the floppy plugin? See the 4/4 commit message for an explanation. The