Date: Wed, 9 Aug 2000 08:15:33 +0200 (MET DST) From: Ariel Burbaickij <Ariel.Burbaickij@mni.fh-giessen.de> To: questions@freebsd.org Subject: How to inhibit inline functions appearing during debugging(-g) fromshowing up ? Message-ID: <Pine.GSO.4.10.10008090811590.2400-100000@sun34>
next in thread | raw e-mail | index | archive | help
I am debugging some programm of mine with ddd as frontend.I see
soem functions I have neither defined nor declared nor included
of the form: static __inline int
__isctype(_BSD_CT_RUNE_T_ _c, unsigned long _f)
{
return (_c < 0 || _c >= _CACHED_RUNES) ? 0 :
!!(_DefaultRuneLocale.runetype[_c] & _f);
}
or static __inline _BSD_CT_RUNE_T_
__toupper(_BSD_CT_RUNE_T_ _c)
{
return (_c < 0 || _c >= _CACHED_RUNES) ? ___toupper(_c) :
_CurrentRuneLocale->mapupper[_c];
}
They hinder to see the structure of programm to me and are rather
cumbersome. How can I inhibit them showing up in the listing ?
Regards,
Ariel
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.GSO.4.10.10008090811590.2400-100000>
