X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f From: =?ISO-8859-1?Q?Hans-Bernhard_Br=F6ker?= Newsgroups: comp.os.msdos.djgpp Subject: Re: Symify and gpp Date: Sun, 10 Jul 2011 16:39:15 +0200 Lines: 18 Message-ID: <97trs9Fj03U1@mid.dfncis.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: news.dfncis.de rn8wA35Z8J9M8Ux/FhqwuQ+rzzeBjP7dCCv8REq5Ml9Wre6QNKfHONAAcr Cancel-Lock: sha1:7N62FUE9w+aTIWfviBqA66OdhWo= User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:5.0) Gecko/20110624 Thunderbird/5.0 In-Reply-To: Bytes: 1632 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 10.07.2011 14:51, Georg wrote: > Call frame traceback EIPs: > 0x00009d8e __ZN15Text_Display6resizeEiiii+462 > 0x00007dad __ZN15Text_Display18buffer_modified_cbEiiiiPKcPv+447 > 0x00007f66 __ZN15Text_Display6bufferEP14Text_Buffer+192 > 0x000031f7 __Z8new_viewv+210 > 0x000032e4 _main+66 > 0x001d726f ___crt1_startup+191 > > I have a Text_Display constructor in the code but what does the > __ZN15, the 6resize and the Eiiii+462 stand for? Those are coded information about the other parts of your C++ methods. They're the result of "name mangling". You'll have to un-mangle them. Did you install gdb? If so, you should have bfdsymify, which should have un-mangled those names.