1 # Copyright 1988, 1990, 1991, 1992, 1995, 1997, 2007, 2008, 2009
2 # Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # This file was written by Rob Savoye. (rob@cygnus.com)
20 # load support libraries
26 set gdb_prompt "\\(vxgdb\\)"
29 # gdb_version -- extract and print the version number of gcc
36 # gdb_load -- load a file into the debugger.
37 # We have to stop and start gdb each time we do this, because when
38 # vxgdb loads two files in a row, the symbols in the first file loaded
39 # take precedence. Returns -1 on error, else 0.
41 proc gdb_load { arg } {
44 if { [remote_ld target $arg] != 0 } {
45 perror "Couldn't load $arg"
49 return [gdb_file_cmd $arg]
53 # gdb_start -- start gdb running
61 # get a connection to the board
62 for { set x 0; } { $x < 3 } { incr x } {
63 set shell_id [remote_open target]
64 if { $shell_id > 0 } {
65 verbose "Spawn id for remote shell is $shell_id"
68 verbose "Timeout is now $timeout seconds" 2
70 set state [spawn_vxgdb];
71 if { $state == "pass" } {
74 if { $state == "fail" } {
82 proc spawn_vxgdb { } {
87 # set the default arguments to "main", so that "run" with no
88 # arguments will work correctly.
89 send_gdb "set args main\n"
90 gdb_expect -re ".*$gdb_prompt $" {}
92 verbose "Setting up target, Please wait..."
93 # set targets hostname
94 send_gdb "target vxworks [target_info hostname]\n"
96 verbose "Timeout is now $timeout seconds" 2
98 -re "Done\..*$gdb_prompt $" {
99 verbose "Set target to [target_info hostname]" 1
103 -re "net_connect: RPC: (Program not registered|.*Timed out).*$" {
104 warning "Couldn't set GDB to target [target_info netport]."
107 warning "Couldn't set target for vxworks."
115 catch default_gdb_exit
119 # "<return>" { send "\n"; perror "Window too small." }
120 # -re "\(y or n\) " { send "n\n"; perror "Got interactive prompt." }
121 # buffer_full { perror "internal buffer is full." }
122 # eof { perror "eof -- pty is hosed." }
123 # timeout { perror "timeout." }
124 # "virtual memory exhausted" { perror "virtual memory exhausted." }
125 # "Undefined command" { perror "send string probably wrong." }