search for: sa_resethand

Displaying 12 results from an estimated 12 matches for "sa_resethand".

2004 Feb 08
3
Re: klibc - setenv broken
Kay Sievers wrote: > Hi, > this simple program compiled with klibc: > > #include <stdio.h> > int main(int argc, char* argv[]) > { > setenv("TESTENV", "happy", 1); > printf("TESTENV='%s'\n", getenv("TESTENV")); > } > > prints: > > ./env > TESTENV='(null)' > >
2010 Jan 11
0
[PATCH] Fix arm signals
...ignal in 32-bit mode, even if the task + * is running in 26-bit. + * SA_ONSTACK allows alternate signal stacks (see sigaltstack(2)). + * SA_RESTART flag to get restarting signals (which were the default long ago) + * SA_NODEFER prevents the current signal from being masked in the handler. + * SA_RESETHAND clears the handler when the signal is delivered. + * + * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single + * Unix names RESETHAND and NODEFER respectively. + */ +#define SA_NOCLDSTOP 0x00000001 +#define SA_NOCLDWAIT 0x00000002 +#define SA_SIGINFO 0x00000004 +#define SA_THIRT...
2020 Aug 27
0
[klibc:master] alpha: Fix definitions of _NSIG and struct sigaction
...27 +#define SIGWINCH 28 +#define SIGINFO 29 +#define SIGUSR1 30 +#define SIGUSR2 31 + +#define SIGPOLL SIGIO +#define SIGPWR SIGINFO +#define SIGIOT SIGABRT + +#define SA_ONSTACK 0x00000001 +#define SA_RESTART 0x00000002 +#define SA_NOCLDSTOP 0x00000004 +#define SA_NODEFER 0x00000008 +#define SA_RESETHAND 0x00000010 +#define SA_NOCLDWAIT 0x00000020 +#define SA_SIGINFO 0x00000040 + +#define SA_ONESHOT SA_RESETHAND +#define SA_NOMASK SA_NODEFER + +#define MINSIGSTKSZ 4096 +#define SIGSTKSZ 16384 + +#define SIG_BLOCK 1 +#define SIG_UNBLOCK 2 +#define SIG_SETMASK 3 + +#include <asm-generic/signal-def...
2011 Aug 04
3
[Announce] Samba 3.5.11 Available for Download
...curity patch KB2536276 is installed (bug #7460). o Fix DoS in Winbind and smbd with many file descriptors open (bug #7949). o Fix Winbind panics if verify_idpool() fails (bug #8253). Changes since 3.5.10: -------------------- o Jeremy Allison <jra at samba.org> * BUG 7462: Make SA_RESETHAND conditional on its existance. * BUG 8254: Make "acl check permissions = no" working in all cases. o Gregor Beck <gbeck at sernet.de> * BUG 8253: Fix Winbind panics if verify_idpool() fails. o David Disseldorp <ddiss at suse.de> * BUG 8269: Stop spamming log...
2011 Aug 04
3
[Announce] Samba 3.5.11 Available for Download
...curity patch KB2536276 is installed (bug #7460). o Fix DoS in Winbind and smbd with many file descriptors open (bug #7949). o Fix Winbind panics if verify_idpool() fails (bug #8253). Changes since 3.5.10: -------------------- o Jeremy Allison <jra at samba.org> * BUG 7462: Make SA_RESETHAND conditional on its existance. * BUG 8254: Make "acl check permissions = no" working in all cases. o Gregor Beck <gbeck at sernet.de> * BUG 8253: Fix Winbind panics if verify_idpool() fails. o David Disseldorp <ddiss at suse.de> * BUG 8269: Stop spamming log...
2011 Aug 08
0
[PATCH/RFC] Add initial avr32 port
...A_SIGINFO deliver the signal with SIGINFO structs + * SA_ONSTACK indicates that a registered stack_t will be used. + * SA_RESTART flag to get restarting signals (which were the default long ago) + * SA_NODEFER prevents the current signal from being masked in the handler. + * SA_RESETHAND clears the handler when the signal is delivered. + * + * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single + * Unix names RESETHAND and NODEFER respectively. + */ +#define SA_NOCLDSTOP 0x00000001 +#define SA_NOCLDWAIT 0x00000002 +#define SA_SIGINFO 0x00000004 +#d...
2018 May 29
0
[ANNOUNCE] xf86-input-synaptics 1.9.1
...oid log spam when the device goes away (and before udev tells us that it's gone). synaptics is in maintenance mode, so don't expect any new great features. Emil Velikov (1): autogen.sh: use quoted string variables Luca Castagnini (1): Replace SA_ONESHOT with the more portable SA_RESETHAND. Mihail Konev (1): autogen: add default patch prefix Peter Hutterer (3): Drop HandleTouches - it's a noop eventcomm: if we get a read error other than EAGAIN, remove the fd synaptics 1.9.1 git tag: xf86-input-synaptics-1.9.1 https://xorg.freedesktop.org/archive/indiv...
2006 Jun 26
0
[klibc 24/43] i386 support for klibc
...AGS values: + * + * SA_ONSTACK indicates that a registered stack_t will be used. + * SA_INTERRUPT is a no-op, but left due to historical reasons. Use the + * SA_RESTART flag to get restarting signals (which were the default long ago) + * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop. + * SA_RESETHAND clears the handler when the signal is delivered. + * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies. + * SA_NODEFER prevents the current signal from being masked in the handler. + * + * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single + * Unix names RESETHAND and NODEFER resp...
2010 Feb 02
0
build failures with 2.6.33-rc
.../../include/signal.h:14, from usr/klibc/../include/sys/select.h:11, from usr/klibc/../include/unistd.h:12, from usr/klibc/../include/stdio.h:11, from usr/klibc/vsnprintf.c:13: linux/include/asm-generic/signal.h:73:1: warning: "SA_RESETHAND" redefined In file included from usr/klibc/../include/signal.h:14, from usr/klibc/../include/sys/select.h:11, from usr/klibc/../include/unistd.h:12, from usr/klibc/../include/stdio.h:11, from usr/klibc/vsnprintf.c:13: usr/incl...
2011 Aug 09
1
[Announce] Samba 3.6.0 Available for Download
...Changes since 3.6.0rc3 ---------------------- o Michael Adam <obnox at samba.org> * BUG 8327: Fix the reload of the configuration, also reload activated registry shares. * BUG 8328: Cleanup of idmap_tdb2 code. o Jeremy Allison <jra at samba.org> * BUG 7462: Make SA_RESETHAND conditional on its existance. * BUG 8324: smbclient cannot list directories from a big-endian machine. * BUG 8335: File copy aborts with smb2_validate_message_id: bad message_id. o Christian Ambach <ambi at samba.org> * BUG 8330: Fix NFSv4 ACL merging logic. o Andrew Bartl...
2011 Aug 09
1
[Announce] Samba 3.6.0 Available for Download
...Changes since 3.6.0rc3 ---------------------- o Michael Adam <obnox at samba.org> * BUG 8327: Fix the reload of the configuration, also reload activated registry shares. * BUG 8328: Cleanup of idmap_tdb2 code. o Jeremy Allison <jra at samba.org> * BUG 7462: Make SA_RESETHAND conditional on its existance. * BUG 8324: smbclient cannot list directories from a big-endian machine. * BUG 8335: File copy aborts with smb2_validate_message_id: bad message_id. o Christian Ambach <ambi at samba.org> * BUG 8330: Fix NFSv4 ACL merging logic. o Andrew Bartl...
2006 Jun 28
35
[klibc 00/31] klibc as a historyless patchset (updated and reorganized)
I have updated the klibc patchset based on feedback received. In particular, the patchset has been reorganized so as not to break git-bisect. Additionally, this updates the patch base to 2.6.17-git12 (d38b69689c349f35502b92e20dafb30c62d49d63) and klibc 1.4.8; the main difference on the klibc side is removal of obsolete code. This is also available as a git tree at: