Constify strings in tracepoint.c, lookup_cmd and the completers.
[platform/upstream/binutils.git] / gdb / sparc-sol-thread.c
1 /* Copyright (C) 2012-2013 Free Software Foundation, Inc.
2
3    This file is part of GDB.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 #include "defs.h"
19 #include <proc_service.h>
20
21 /* Get size of extra register set.  Currently a noop.  */
22
23 ps_err_e
24 ps_lgetxregsize (struct ps_prochandle *ph, lwpid_t lwpid, int *xregsize)
25 {
26   return PS_OK;
27 }
28
29 /* Get extra register set.  Currently a noop.  */
30
31 ps_err_e
32 ps_lgetxregs (struct ps_prochandle *ph, lwpid_t lwpid, caddr_t xregset)
33 {
34   return PS_OK;
35 }
36
37 /* Set extra register set.  Currently a noop.  */
38
39 ps_err_e
40 ps_lsetxregs (struct ps_prochandle *ph, lwpid_t lwpid, caddr_t xregset)
41 {
42   return PS_OK;
43 }