From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21180 invoked by alias); 2 Sep 2007 07:50:57 -0000 Received: (qmail 21171 invoked by uid 22791); 2 Sep 2007 07:50:56 -0000 X-Spam-Check-By: sourceware.org Received: from mailgw.cvut.cz (HELO mailgw.cvut.cz) (147.32.3.235) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sun, 02 Sep 2007 07:50:51 +0000 Received: from mailgw (localhost [127.0.0.1]) by mailgw.cvut.cz (Postfix) with SMTP id 5BC7C13B6BF; Sun, 2 Sep 2007 09:50:48 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mailgw.cvut.cz (Postfix) with ESMTP id 2814B13B8C3; Sun, 2 Sep 2007 09:50:48 +0200 (CEST) Received: from mailgw.cvut.cz ([127.0.0.1]) by localhost (mailgw [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 01250-03; Sun, 2 Sep 2007 09:50:48 +0200 (CEST) Received: from [127.0.0.1] (buk.vc.cvut.cz [147.32.240.88]) by mailgw.cvut.cz (Postfix) with ESMTP id 4066D13B6BF; Sun, 2 Sep 2007 09:50:47 +0200 (CEST) Message-ID: <46DA6B56.1060200@vc.cvut.cz> Date: Sun, 02 Sep 2007 07:50:00 -0000 From: Petr Vandrovec User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.8.1.6) Gecko/20070802 Iceape/1.1.4 (Debian-1.1.4-1) MIME-Version: 1.0 To: ying lcs CC: gdb@sourceware.org Subject: Re: Program received signal SIG33, Real-time event 33. References: <568e62a40709012254j43aa5c15i9c7612350a77de55@mail.gmail.com> In-Reply-To: <568e62a40709012254j43aa5c15i9c7612350a77de55@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2007-09/txt/msg00001.txt.bz2 ying lcs wrote: Hello, > (gdb) run -d -s 5 > Starting program: > /home/yinglcs/DarwinStreamingSrvr5.5.5-Source/DarwinStreamingServer -d > -s 5 > Reading symbols from shared object read from target memory...done. > Loaded system supplied DSO at 0xc34000 > [Thread debugging using libthread_db enabled] > [New Thread -1208932160 (LWP 2510)] > [New Thread -1208935520 (LWP 2513)] > [New Thread -1219425376 (LWP 2514)] > [New Thread -1229972576 (LWP 2517)] > > Program received signal SIG33, Real-time event 33. > [Switching to Thread -1208932160 (LWP 2510)] > 0x00b28a64 in __nptl_create_event () from /lib/libpthread.so.0 Apparently your program uses signals... If this is expected (which probably is for realtime signals) then handle SIG33 nostop noprint pass will configure gdb so this signal is ignored by gdb, but delivered to program like without gdb. Petr