SirRatty
SirRatty

Reputation: 2408

Mac OS X - Objective C Runtime - What, Where, When?

some general questions about the Mac OS X architecture.

I know roughly what the Objective C 2.0 Runtime does. (e.g. class loading, message dispatching, etc.)

However, I don't know where the runtime fits in the scheme of things, from the kernel up to individual processes.

thanks.

Upvotes: 3

Views: 222

Answers (1)

kennytm
kennytm

Reputation: 523154

The runtime code are all in libobjc.A.dylib. It works like a normal dynamic library, so it is loaded 1 time per process.

Upvotes: 4

Related Questions