Displaying 4 results from an estimated 4 matches for "nostop".
Did you mean:
nonstop
2012 Jul 27
1
Samba 3.6.x: smbd receives sigpipe and crashes
Hello,
I've got problems with Samba 3.6.0 up to 3.6.6. Forked smbd processes
are closing unexpectedly and sometimes smbd server exits. (In Samba
3.5.16 everything works).
When invoke smbd from gdb and turn off SIGPIPE passing (by command
"handle SIGPIPE nostop nopass") everything works fine. I found out that
SigBlk flag of forked smbd processes in /proc/*/status is:
0000000000000880 and should be 0000000000001880 (It works in Samba 3.5.16).
This flag changes after invoking getpwnam function, after passing string
"guest+workgroup" to it....
2010 Feb 19
2
segfault - (imap|pop3)-login during nessus scan
We've been struggling with a problem for the past couple of days which to this point I've only gotten to be able to boil down to this:
1. Install nessus home edition (less pluggins I assume)
2. run all scans (sequentially or in parallel, doesn't seem to matter)
3. about 3 minutes in /var/log/messages will show segfaults on imap and/or pop3
imap-login[22185]: segfault at
2009 Feb 04
12
Serial console hangs with Linux 2.6.20 HVM guest
I am seeing a problem with the Xen emulated serial console. When
running a Linux 2.6.20 HVM guest that has CONFIG_HOTPLUG_CPU=n, the
guest blocks on output to the console until it receives input keypresses
from `xm console`. This prevents the guest from booting up without
banging on some keys, and makes interactive use of the console
difficult.
By bisecting Linux kernel commits, I found that
2001 Dec 08
1
LoadOEMResource crash [Was: Re: Problem report: SHRINKER.ERR, fix to DEVICE_Open/CreateFileA? ]
Hooray, I got gdb to do what I need, to skip the first exception and
break before the second.
The key commands are:
gdb (winepath)/bin/wine
Set the arguments:
> set args --winver nt40 yourapp
Tell gdb to pass segmentation faults to the program:
> handle SIGSEGV nostop pass
Set a breakpoint at main:
> b main
Run the program:
> run
This loads all the shared libraries, and now we can set more breakpoints
in those libraries. Set a breakpoint where wine handles exceptions, and
continue the program:
> break EXC_RtlRaiseException
> cont
Now the...