From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20346 invoked by alias); 16 Mar 2004 10:39:47 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 20329 invoked from network); 16 Mar 2004 10:39:45 -0000 Received: from unknown (HELO visolve.com) (63.194.81.67) by sources.redhat.com with SMTP; 16 Mar 2004 10:39:45 -0000 Received: (qmail 27047 invoked from network); 16 Mar 2004 10:39:55 -0000 Received: from unknown (HELO mukco) (prabu@[203.129.254.138]) (envelope-sender ) by visolve.com (qmail-ldap-1.03) with SMTP for ; 16 Mar 2004 10:39:55 -0000 Message-ID: <01f001c40b42$ff300260$2e0110ac@mukco> From: "Muthukumar" To: "murugesan" , "Daniel Jacobowitz" Cc: References: <123e01c40807$34e4ce20$2b0110ac@munco> <20040312153948.GA20371@nevyn.them.org> <00e001c40b0a$f941bcf0$4b0110ac@munco> Subject: Re: ptype of prototype of a funtion Date: Tue, 16 Mar 2004 10:39:00 -0000 X-SW-Source: 2004-03/txt/msg00143.txt.bz2 >> > gdb>ptype fun > type = int () > > But 'ptype fun' just displays the return type followed by paranthesis. > > Also, > > gdb>ptype fun() > type = int > What a great! the paranthesis is missing. You can get also the function information using thr "whatis" command too. as ., whatis fun (or) whatis fun() > But I am unable to get the parameter type. > Is there really a way to find the parameter type ? If you are attempting to know about the function parameters then they are only known to the function loop only. not to the main function.Because they may be local to the function not as global. At that time you have to get the function parameter informations by going into the function and put the command ptype or whatis for the particular parameter type. For example: main() If you get the information with ptype then gdb> ptype main type = int () If you change the code as /* Global variables */ int argc; char argv[]; main(argc,argv) If you get the information with ptype / whatis then gdb> ptype main type = int (int, int) > > Thanks, > Murugesan > Regards, Muthukumar. =========================================================================================== > > ----- Original Message ----- > From: Daniel Jacobowitz > To: murugesan > Cc: gdb@sources.redhat.com > Sent: Friday, March 12, 2004 9:09 PM > Subject: Re: ptype of prototype of a funtion > > > On Fri, Mar 12, 2004 at 01:23:59PM +0530, murugesan wrote: > > Hello all, > > ptype fun(NULL,NULL) > > This gives me the return type of the function fun > > Is there a way to get the prototype of a function i gdb. > > > > I don't know the type of the parameters of fun which can have the value > > NULL. [ (void*)0 ] > > > > thanks in advance for the help. > > How about 'ptype fun'? > > -- > Daniel Jacobowitz > MontaVista Software Debian GNU/Linux Developer > >