I assume you are asking what those meaningless character strings are
all about.
These are "mangled" names from the C++ compiler. They include not
only the symbol name, but the "signature" (argument and return value
types) as well.
To find out what they really are, use "c++filt", a command-line tool
(there's a man page to tell you more).
A caveat: for the above symbol, you can use
$ c++filt _ZN9__gnu_cxx12__atomic_addEPVii
with one leading "_" stripped, or
$ c++filt
__ZN9__gnu_cxx12__atomic_addEPVii
....
without the leading underscore stripped. Don't ask me; it's not my
design :-}.
Cheers,
Justin
--
Justin C. Walker, Curmudgeon-At-Large
Institute for the Enhancement of the Director's Income
--------
When LuteFisk is outlawed,
Only outlaws will have LuteFisk
--------
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/xcode-users/email@hidden