From mboxrd@z Thu Jan 1 00:00:00 1970 From: alex.shneer@verizon.com To: Khamis Abuelkomboz Cc: irox@redhat.com, sourcenav@sources.redhat.com Subject: Re: cross references of static functions Date: Thu, 18 Jan 2001 06:25:00 -0000 Message-id: <852569D8.004E4D7A.00@smtpsrv1.bigyellow.com> X-SW-Source: 2001-q1/msg00039.html Hi,Khamis, I tried this and choosing "Compare static information" did not change anything. Surprisingly, if I choose "Compare parameters" it solves the problem in this test case, no matter if "Compare static information" is selected ot not. I'm using SN452. What version did you try? Thanks Alex Khamis Abuelkomboz on 01/18/2001 03:51:13 AM To: alex.shneer@verizon.com cc: irox@redhat.com, sourcenav@sources.redhat.com Subject: Re: cross references of static functions Hi alex, The functionality exists in SN, you need to hit the right-mouse button in the xref view and click on "Compare static information". have fun! khamis == Hi, can anybody tell why cross reference window shows that both func1 and func2 are referenced by static_func, no matter wich one we choose: one defined in the static1.c or one defined in static2.c? static1.c: -------------------------------------- static static_func() { func1(); } -------------------------------------- static2.c -------------------------------------- static static_func () { func2(); } ---------------------------------------