On Wed, 2006-12-06 at 17:19 +0100, Come Lonfils wrote:
> Hi,
> I'm trying to know more about how messages are send to the objects in
> objective-C
Messages are send via a dynamic lookup using strings.
For the GNU runtime, objc_msg_lookup is called to get the function
pointer and then we cast it to
Hi,
I'm trying to know more about how messages are send to the
objects in objective-C, how they are store,...
In which structures en how?
Where should I look in the source code of gcc to know it?
I looked in libobjc but I'm a bit lost.
Thanks very much
See How Messaging Works document at
http
On Dec 6, 2006, at 8:19 AM, Come Lonfils wrote:
I'm trying to know more about how messages are send to the objects
in objective-C, how they are store,...
In which structures en how?
Where should I look in the source code of gcc to know it? I looked
in libobjc but I'm a bit lost.
I'd probabl