diff options
author | Joel Brobecker <brobecker@gnat.com> | 2012-09-27 12:53:44 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2012-09-27 12:53:44 +0000 |
commit | 43c75337b68375e451cc441a739b9e654894f558 (patch) | |
tree | 46bc3abd50a266d21e5262987630229ba8109809 /gdb/sol-thread.c | |
parent | d292a9723dae9eb829d077bc8d3d76a87f75553f (diff) | |
download | gdb-43c75337b68375e451cc441a739b9e654894f558.zip gdb-43c75337b68375e451cc441a739b9e654894f558.tar.gz gdb-43c75337b68375e451cc441a739b9e654894f558.tar.bz2 |
New unit sparc-sol-thread.c extracted from sol-thread.c
Moving some sparc-specific routines out of sol-thread.c into their
own (new) file.
gdb/ChangeLog:
* sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
Move these functions to sparc-sol-thread.c.
* sparc-sol-thread.c: New file.
* configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
configurations.
* configure: Regenerate.
Diffstat (limited to 'gdb/sol-thread.c')
-rw-r--r-- | gdb/sol-thread.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c index d948e9c..585a77f 100644 --- a/gdb/sol-thread.c +++ b/gdb/sol-thread.c @@ -959,34 +959,6 @@ ps_plog (const char *fmt, ...) vfprintf_filtered (gdb_stderr, fmt, args); } -#if defined (__sparc) || defined (__sparcv9) - -/* Get size of extra register set. Currently a noop. */ - -ps_err_e -ps_lgetxregsize (gdb_ps_prochandle_t ph, lwpid_t lwpid, int *xregsize) -{ - return PS_OK; -} - -/* Get extra register set. Currently a noop. */ - -ps_err_e -ps_lgetxregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, caddr_t xregset) -{ - return PS_OK; -} - -/* Set extra register set. Currently a noop. */ - -ps_err_e -ps_lsetxregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, caddr_t xregset) -{ - return PS_OK; -} - -#endif /* defined (__sparc) || defined (__sparcv9) */ - /* Get floating-point registers for LWP. */ ps_err_e |