OSDN Git Service

* dll_init.cc (dll_global_dtors): Add an additional test to avoid walking the
[pf3gnuchains/pf3gnuchains4x.git] / gdb / gdbtk / library / process.ith
1 # Process window class definition for Insight.
2 # Copyright (C) 1998, 1999, 2001 Red Hat, Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify it
5 # under the terms of the GNU General Public License (GPL) as published by
6 # the Free Software Foundation; either version 2 of the License, or (at
7 # your option) any later version.
8 #
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.
13
14
15 itcl::class ProcessWin {
16   inherit EmbeddedWin GDBWin
17   
18   private {
19     variable id
20     variable Running 0
21     variable protect_me 0
22
23
24     method build_win {}
25     method change_context {}
26     method cursor {glyph}
27   }
28
29   public {
30     method reconfig {}
31     method constructor {args} 
32     method destructor {}
33
34     #
35     # GDB Events
36     #
37     method busy {event}    
38     method idle {event}
39     method update {event}
40   }
41 }