swarm-support
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: reading a backtrace


From: Marcus G. Daniels
Subject: Re: reading a backtrace
Date: 06 Jan 2000 13:58:08 -0800
User-agent: Gnus/5.070084 (Pterodactyl Gnus v0.84) Emacs/20.4

>>>>> "MM" == Matthew M Murphy <address@hidden> writes:

MM> #0 objc_msg_lookup (receiver=0x815ec10, op=0x804d580) at
MM> objc/sarray.h:232 #1 0x8049764 in _i_Bug__receiveUtteranceFrom_

This says that receiveUtteranceFrom is sending a message (0x804d580)
to receiver 0x815ec10.  You can look at the class of the target by using
"print ((Class *) receiver)->name" and you can look at the selector
name by using "call sel_get_name (op)".  The latter will probably not
work unless you have a version of Swarm you built your self without 
inlining.

Typically this sort of thing happens when you send a message to an object
that has been dropped, or you have an uninitialized target variable, or
the message you are sending doesn't exist in the target (e.g. a typo).

                  ==================================
   Swarm-Support is for discussion of the technical details of the day
   to day usage of Swarm.  For list administration needs (esp.
   [un]subscribing), please send a message to <address@hidden>
   with "help" in the body of the message.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]