This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: gdb user defined function


>>>>> "Sinbad" == Sinbad  <sinbad.sinbad@gmail.com> writes:

Sinbad> i am trying to write a user-defined function in gdb.
Sinbad> while analyzing the core is it possible to see if a
Sinbad> pointer variable is accessible or not inside a gdb
Sinbad> user-defined function. for example.
Sinbad> (gdb) p *ptr
Sinbad> cannot access memory at address 0x35336
Sinbad> is there any way to find this inside a gdb function.
Sinbad> i need something as follows
Sinbad> define sub
Sinbad>    is_accessible(ptr)
Sinbad> end

I can't think of an easy way to do this from the gdb CLI, but you can do
it from Python by catching the exception.

You could straightforwardly write a $is_valid function that examines a
pointer for validity.

Tom


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]