From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28676 invoked by alias); 19 Jul 2008 16:37:04 -0000 Received: (qmail 28668 invoked by uid 22791); 19 Jul 2008 16:37:03 -0000 X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.33.17) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sat, 19 Jul 2008 16:36:46 +0000 Received: from zps36.corp.google.com (zps36.corp.google.com [172.25.146.36]) by smtp-out.google.com with ESMTP id m6JGaaFd030833 for ; Sat, 19 Jul 2008 17:36:37 +0100 Received: from yw-out-1718.google.com (ywm5.prod.google.com [10.192.13.5]) by zps36.corp.google.com with ESMTP id m6JGaVEN021417 for ; Sat, 19 Jul 2008 09:36:36 -0700 Received: by yw-out-1718.google.com with SMTP id 5so445507ywm.72 for ; Sat, 19 Jul 2008 09:36:35 -0700 (PDT) Received: by 10.150.58.5 with SMTP id g5mr1583639yba.35.1216485395752; Sat, 19 Jul 2008 09:36:35 -0700 (PDT) Received: by 10.151.107.3 with HTTP; Sat, 19 Jul 2008 09:36:35 -0700 (PDT) Message-ID: <8ac60eac0807190936y4ab3ca10j7252c54668808290@mail.gmail.com> Date: Sat, 19 Jul 2008 18:25:00 -0000 From: "Paul Pluzhnikov" To: "Jelle de Jong" Subject: Re: how can i stop a running process to do a backtrace? Cc: gdb@sourceware.org In-Reply-To: <4882023D.5090705@powercraft.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <488200CC.6000900@powercraft.nl> <20080719150017.GA18314@caradoc.them.org> <4882023D.5090705@powercraft.nl> 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: 2008-07/txt/msg00226.txt.bz2 On Sat, Jul 19, 2008 at 8:03 AM, Jelle de Jong wrote: > After the sshfs froze i did a killall -9 sshfs Well, don't do *that* (it causes the kernel to obliterate the process completely). Try "killall sshfs", or "killall -SIGABRT sshfs", or "killall -SIGQUIT sshfs". If one of the above wakes sshfs up, then you'll have a chance to debug it. Cheers, -- Paul Pluzhnikov