|
|
|||
File indexing completed on 2026-04-09 07:49:05
0001 dbg__()
0002 {
0003 gdb__ $*
0004 }
0005
0006
0007 gdb__ ()
0008 {
0009 if [ -z "$BP" ]; then
0010 H="";
0011 B="";
0012 T="-ex r";
0013 else
0014 H="-ex \"set breakpoint pending on\"";
0015 B="";
0016 for bp in $BP;
0017 do
0018 B="$B -ex \"break $bp\" ";
0019 done;
0020 T="-ex \"info break\" -ex r";
0021 fi;
0022 local runline="gdb $H $B $T --args $* ";
0023 echo $runline;
0024 date;
0025 eval $runline;
0026 date
0027 }
0028
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|