Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 21 Jun 2015 05:10:26 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-threads@FreeBSD.org
Subject:   [Bug 200992] proccess won't die in thread_suspend_switch
Message-ID:  <bug-200992-16-slZlpDHLse@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-200992-16@https.bugs.freebsd.org/bugzilla/>
References:  <bug-200992-16@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200992

Konstantin Belousov <kib@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kib@FreeBSD.org

--- Comment #2 from Konstantin Belousov <kib@FreeBSD.org> ---
(In reply to Steve Wills from comment #0)
This might be a callout issue.

Find the address of the process and thread structures:
ps axHS -o pid,lwp,paddr,tdaddr 4992
Output is like this
 PID    LWP            PADDR           TDADDR
1485 100311 fffff8015934d4e8 fffff8016d006000
1485 100313 fffff8015934d4e8 fffff8011d7dd4a0

Third column is the struct proc address, fourth - the struct thread address.

Attach to the live system with kgdb:
kgdb .../kernel.debug /dev/mem
Do
p *(struct proc *)0x<proc addr>
p *(struct thread *)0x<thread addr for lwp 101861>

-- 
You are receiving this mail because:
You are the assignee for the bug.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-200992-16-slZlpDHLse>