summaryrefslogtreecommitdiff
path: root/gdb/gdbtk/plugins/intel-pentium/cpuinfo.tcl
blob: 8f78ae15ea8fd9f9185858b439b0918a92b78af0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Display CPU information.
# Copyright 1999, 2000, 2001 Red Hat, Inc.
#
# Written by Fernando Nasser  <fnasser@redhat.com>
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License (GPL) as published by
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# ------------------------------------------------------------------
#  NAME:         proc display_cpu_info
#  DESCRIPTION:  display what we know about the target CPU
#                if the information is available.
#
#  ARGUMENTS:    None
#  RETURNS:      Nothing
#
#  NOTES:
# ------------------------------------------------------------------
proc display_cpu_info {} {
  global gdb_cpuid_info
  if {[catch {gdb_cmd "info cpu"} result]} {
    tk_messageBox -message "CPU information not available"
  } else {
    tk_messageBox -message "$result"
  }
}