NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

set prompt 33[1;34mgdb$ 33[21;0m

set confirm off
set verbose off
set history filename ~/.gdb_history
set history save

set output-radix 0x10
set input-radix 0x10

# These make gdb never pause in its output
set height 0
set width 0

set $SHOW_CONTEXT = 1
set $SHOW_NEST_INSN = 0
set $CONTEXTSIZE_STACK = 6
set $CONTEXTSIZE_DATA = 8
set $CONTEXTSIZE_CODE = 8

set $SHOWSTACK = 0
set $SHOWDATAWIN = 0


define ib
info breakpoints
end

define cb
if $argc > 0
clear $arg0
end
end

define eb
if $argc > 0
enable $arg0
end
end

define db
if $argc > 0
disable $arg0
end
end

define tb
if $argc > 0
tbreak $arg0
end
end

define wb
if $argc > 0
awatch $arg0
end
end


define main
tbreak main
r
end


define clear
shell clear
end

######################################
##### GDB commands to remember
######################################

# show args
# info args
# info functions
# info variables
# info sharedlibrary
# info signals
# info threads
# info stack
# info frames

# edit
# nexti
# stepi
# finish


######################################
##### Advanced
######################################

define step_to_call
set $_saved_ctx = $SHOW_CONTEXT
set $SHOW_CONTEXT = 0
set $SHOW_NEST_INSN = 0

set logging file /dev/null
set logging redirect on
set logging on

set $_cont = 1
while ($_cont > 0)
stepi
get_insn_type $pc
if ($INSN_TYPE == 3)
set $_cont = 0
end
end

set logging off

if ($_saved_ctx > 0)
context
end

set $SHOW_CONTEXT = $_saved_ctx
set $SHOW_NEST_INSN = 0

set logging file ~/gdb.txt
set logging redirect off
set logging on

printf "step_to_call command stopped at:n "
x/i $pc
printf "n"
set logging off

end
document step_to_call
Syntax: step_to_call
| Single step until a call instruction is found.
| Stop before the call is taken.
| Log is written into the file ~/gdb.txt.
end


define search
set $start = (char *) $arg0
set $end = (char *) $arg1
set $pattern = (short) $arg2
set $p = $start
while $p < $end
if (*(short *) $p) == $pattern
printf "pattern 0x%hx found at 0x%xn", $pattern, $p
end
set $p++
end
end
document search
Syntax: search <START> <END> <PATTERN>
| Search for the given pattern between $start and $end address.
end

     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.