Project Home
Project Home
Source Code
Source Code
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - dtrace: process aborted: (6 Items)
   
dtrace: process aborted  
when I run the example from the wiki page
   dtrace -n "kercalls::enter { @count[execname,probefunc] = count(); }"
and let this run without doing ctrl-c I get an error message after some seconds
   dtrace:process aborted: Abort due to systemic unresponsiveness

whereas when I ctrl-c it, I get the expected output

Do you have a hint for me what's going wrong?

/hp
RE: dtrace: process aborted  
Are you running this in a vmware session?  I saw this too, recently.  I have
yet to nail it down though, but will be looking into it...
 
But basically is means that io-dtrace is not getting a chance to process
it's watchdog timer.
I believe Thomas set this up to be a pulse event.  I'll look into the code.
 
Thanks,
 
Colin

  _____  

From: Hans-Peter Reicher [mailto:hpreichert@harmanbecker.com]
Sent: Sat 26/04/2008 3:18 PM
To: general-dtrace
Subject: dtrace: process aborted



when I run the example from the wiki page 
   dtrace -n "kercalls::enter { @count[execname,probefunc] = count(); }" 
and let this run without doing ctrl-c I get an error message after some
seconds 
   dtrace:process aborted: Abort due to systemic unresponsiveness 

whereas when I ctrl-c it, I get the expected output 

Do you have a hint for me what's going wrong? 

/hp 

_______________________________________________ 
General 
http://community.qnx.com/sf/go/post7346
<http://community.qnx.com/sf/go/post7346>;  

Re: RE: dtrace: process aborted  
yep, I am running this in a vm ware session.
I will try this the next days on a native x86 installation
Re: dtrace: process aborted  
I'm looking into it.  Cheers,

Colin

Hans-Peter Reicher wrote:
> yep, I am running this in a vm ware session.
> I will try this the next days on a native x86 installation
> 
> _______________________________________________
> General
> http://community.qnx.com/sf/go/post7382
> 

-- 
cburgess@qnx.com
Re: dtrace: process aborted  
It appears to be a issue with the deadman timer being implemented as a user
thread,
whereas the check for deadman timeout is done at kernel time in the
dtrace_probe function.

Hans-Peter Reicher wrote:
> yep, I am running this in a vm ware session.
> I will try this the next days on a native x86 installation
> 
> _______________________________________________
> General
> http://community.qnx.com/sf/go/post7382
> 

-- 
cburgess@qnx.com
Re: dtrace: process aborted  
Meh, it was bad timer creation code.  You need to set an initial value, even
for an interval timer. :-)

Hans-Peter Reicher wrote:
> yep, I am running this in a vm ware session.
> I will try this the next days on a native x86 installation
> 
> _______________________________________________
> General
> http://community.qnx.com/sf/go/post7382
> 

-- 
cburgess@qnx.com