From owner-freebsd-amd64@FreeBSD.ORG Mon Jul 3 00:04:06 2006 Return-Path: X-Original-To: freebsd-amd64@freebsd.org Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AE7716A40F for ; Mon, 3 Jul 2006 00:04:06 +0000 (UTC) (envelope-from mcbrune@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8894D44406 for ; Mon, 3 Jul 2006 00:04:05 +0000 (GMT) (envelope-from mcbrune@gmail.com) Received: by ug-out-1314.google.com with SMTP id m3so1473439uge for ; Sun, 02 Jul 2006 17:04:04 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=HOga7nDjRvngFwzC0sw58VCSF+A+Lw1sUo8ZMsTfDB4BRxe6c1LIVYe1B+RY9250gl/+GCeUrQWgGPHNSEMGqK8LvjjwjyMihsQibJ4RrpLJePGygauqIi79N7UQN0EFYGGHLHbi+Nf4IDNJJmcSJ14UrMl/A6dW99Prxc4nuBE= Received: by 10.66.240.12 with SMTP id n12mr5221621ugh; Sun, 02 Jul 2006 16:56:46 -0700 (PDT) Received: by 10.66.221.2 with HTTP; Sun, 2 Jul 2006 16:56:46 -0700 (PDT) Message-ID: <562705370607021656xb9401dapdc5808df609d0e92@mail.gmail.com> Date: Sun, 2 Jul 2006 18:56:46 -0500 From: "Corey Brune" To: "O. Hartmann" In-Reply-To: <44A7AC66.3070805@mail.uni-mainz.de> MIME-Version: 1.0 References: <44A7AC66.3070805@mail.uni-mainz.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org, freebsd-amd64@freebsd.org Subject: Re: Kill an stopped process X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Jul 2006 00:04:06 -0000 On 7/2/06, O. Hartmann wrote: > > Sometimes it happens on my FreeBSD 6.1-STABLE/AMD box, that a process, > in most cases xine, firefox oder thunderbird, show status 'STOP' in top > and are unkillable! > Trying to kill them as root (sending signal 9 throught 'kill' or > 'killall') doesn't have any effect. > > Can anyone help and tell how to kill such a job? The only way getting > rid of those processes is reboot the box and this can not be the right > way. > > Thanks, > oh > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > A process cannot be killed in certain situations. For instance, if the process is waiting on a IO request, it will block all signals until the request is completed or fails. Could you mount /proc, and do a truss on the process? Also, which version of FreeBSD are you running? Thanks, Corey