aboutsummaryrefslogtreecommitdiff
path: root/gdb/sol-thread.c
diff options
context:
space:
mode:
authorPeter Schauer <Peter.Schauer@mytum.de>2000-09-28 07:53:41 +0000
committerPeter Schauer <Peter.Schauer@mytum.de>2000-09-28 07:53:41 +0000
commita95ac8b608ed2c97e69826561aa3d35b29d4ab78 (patch)
treefbdfd3b7b1c32f19e660d67b73c55cc1b455b255 /gdb/sol-thread.c
parent5ef227419afb623fdefbf072d66c0e330bff9b3d (diff)
downloadgdb-a95ac8b608ed2c97e69826561aa3d35b29d4ab78.zip
gdb-a95ac8b608ed2c97e69826561aa3d35b29d4ab78.tar.gz
gdb-a95ac8b608ed2c97e69826561aa3d35b29d4ab78.tar.bz2
* sol-thread.c (ps_pdmodel): Return PR_MODEL_UNKNOWN instead of
PS_ERR if exec_bfd is not yet open.
Diffstat (limited to 'gdb/sol-thread.c')
-rw-r--r--gdb/sol-thread.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c
index aa909ad..5e0b1da 100644
--- a/gdb/sol-thread.c
+++ b/gdb/sol-thread.c
@@ -1321,9 +1321,8 @@ ps_err_e
ps_pdmodel (gdb_ps_prochandle_t ph, int *data_model)
{
if (exec_bfd == 0)
- return PS_ERR;
-
- if (bfd_get_arch_size (exec_bfd) == 32)
+ *data_model = PR_MODEL_UNKNOWN;
+ else if (bfd_get_arch_size (exec_bfd) == 32)
*data_model = PR_MODEL_ILP32;
else
*data_model = PR_MODEL_LP64;