diff options
author | Michael Snyder <msnyder@vmware.com> | 2000-03-23 21:44:50 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2000-03-23 21:44:50 +0000 |
commit | 0f4db1a1596363685d1d8b466479d75203a286b9 (patch) | |
tree | 8dd351a65f9e888a6f4605f403fab5ee547d0ae7 /gdb | |
parent | 64a5b29c665fbcac6360bcb9160e83b7bcdc670c (diff) | |
download | gdb-0f4db1a1596363685d1d8b466479d75203a286b9.zip gdb-0f4db1a1596363685d1d8b466479d75203a286b9.tar.gz gdb-0f4db1a1596363685d1d8b466479d75203a286b9.tar.bz2 |
2000-03-23 Michael Snyder <msnyder@cleaver.cygnus.com>
* sol-thread.c (ps_pglobal_lookup): Change argument type from
paddr_t to psaddr_t. This mistake appears to date from an
erroneous man page in Solaris 2.5 -- the correct type from the
system headers has always been psaddr_t.
(ps_pdread, ps_pdwrite, ps_ptread, ps_ptwrite): ditto.
(rw_common): ditto.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 9 | ||||
-rw-r--r-- | gdb/sol-thread.c | 12 |
2 files changed, 15 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 64da13b..132e12b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,12 @@ +2000-03-23 Michael Snyder <msnyder@cleaver.cygnus.com> + + * sol-thread.c (ps_pglobal_lookup): Change argument type from + paddr_t to psaddr_t. This mistake appears to date from an + erroneous man page in Solaris 2.5 -- the correct type from the + system headers has always been psaddr_t. + (ps_pdread, ps_pdwrite, ps_ptread, ps_ptwrite): ditto. + (rw_common): ditto. + 2000-03-22 Kevin Buettner <kevinb@redhat.com> * ia64-linux-nat.c: Fix copyright. diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c index 0ec10a4..a3d2d2c 100644 --- a/gdb/sol-thread.c +++ b/gdb/sol-thread.c @@ -1044,7 +1044,7 @@ ps_lcontinue (gdb_ps_prochandle_t ph, lwpid_t lwpid) ps_err_e ps_pglobal_lookup (gdb_ps_prochandle_t ph, const char *ld_object_name, - const char *ld_symbol_name, paddr_t * ld_symbol_addr) + const char *ld_symbol_name, psaddr_t * ld_symbol_addr) { struct minimal_symbol *ms; @@ -1061,7 +1061,7 @@ ps_pglobal_lookup (gdb_ps_prochandle_t ph, const char *ld_object_name, /* Common routine for reading and writing memory. */ static ps_err_e -rw_common (int dowrite, const struct ps_prochandle *ph, paddr_t addr, +rw_common (int dowrite, const struct ps_prochandle *ph, psaddr_t addr, char *buf, int size) { struct cleanup *old_chain; @@ -1105,7 +1105,7 @@ rw_common (int dowrite, const struct ps_prochandle *ph, paddr_t addr, /* Copies SIZE bytes from target process .data segment to debugger memory. */ ps_err_e -ps_pdread (gdb_ps_prochandle_t ph, paddr_t addr, +ps_pdread (gdb_ps_prochandle_t ph, psaddr_t addr, gdb_ps_read_buf_t buf, gdb_ps_size_t size) { return rw_common (0, ph, addr, buf, size); @@ -1114,7 +1114,7 @@ ps_pdread (gdb_ps_prochandle_t ph, paddr_t addr, /* Copies SIZE bytes from debugger memory .data segment to target process. */ ps_err_e -ps_pdwrite (gdb_ps_prochandle_t ph, paddr_t addr, +ps_pdwrite (gdb_ps_prochandle_t ph, psaddr_t addr, gdb_ps_write_buf_t buf, gdb_ps_size_t size) { return rw_common (1, ph, addr, (char *) buf, size); @@ -1123,7 +1123,7 @@ ps_pdwrite (gdb_ps_prochandle_t ph, paddr_t addr, /* Copies SIZE bytes from target process .text segment to debugger memory. */ ps_err_e -ps_ptread (gdb_ps_prochandle_t ph, paddr_t addr, +ps_ptread (gdb_ps_prochandle_t ph, psaddr_t addr, gdb_ps_read_buf_t buf, gdb_ps_size_t size) { return rw_common (0, ph, addr, buf, size); @@ -1132,7 +1132,7 @@ ps_ptread (gdb_ps_prochandle_t ph, paddr_t addr, /* Copies SIZE bytes from debugger memory .text segment to target process. */ ps_err_e -ps_ptwrite (gdb_ps_prochandle_t ph, paddr_t addr, +ps_ptwrite (gdb_ps_prochandle_t ph, psaddr_t addr, gdb_ps_write_buf_t buf, gdb_ps_size_t size) { return rw_common (1, ph, addr, (char *) buf, size); |