sol-thread.c: Remove #if 0-ed code.
[external/binutils.git] / gdb / sol-thread.c
1 /* Solaris threads debugging interface.
2
3    Copyright (C) 1996-2005, 2007-2012 Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 /* This module implements a sort of half target that sits between the
21    machine-independent parts of GDB and the /proc interface (procfs.c)
22    to provide access to the Solaris user-mode thread implementation.
23
24    Solaris threads are true user-mode threads, which are invoked via
25    the thr_* and pthread_* (native and POSIX respectivly) interfaces.
26    These are mostly implemented in user-space, with all thread context
27    kept in various structures that live in the user's heap.  These
28    should not be confused with lightweight processes (LWPs), which are
29    implemented by the kernel, and scheduled without explicit
30    intervention by the process.
31
32    Just to confuse things a little, Solaris threads (both native and
33    POSIX) are actually implemented using LWPs.  In general, there are
34    going to be more threads than LWPs.  There is no fixed
35    correspondence between a thread and an LWP.  When a thread wants to
36    run, it gets scheduled onto the first available LWP and can
37    therefore migrate from one LWP to another as time goes on.  A
38    sleeping thread may not be associated with an LWP at all!
39
40    To make it possible to mess with threads, Sun provides a library
41    called libthread_db.so.1 (not to be confused with
42    libthread_db.so.0, which doesn't have a published interface).  This
43    interface has an upper part, which it provides, and a lower part
44    which we provide.  The upper part consists of the td_* routines,
45    which allow us to find all the threads, query their state, etc...
46    The lower part consists of all of the ps_*, which are used by the
47    td_* routines to read/write memory, manipulate LWPs, lookup
48    symbols, etc...  The ps_* routines actually do most of their work
49    by calling functions in procfs.c.  */
50
51 #include "defs.h"
52 #include <thread.h>
53 #include <proc_service.h>
54 #include <thread_db.h>
55 #include "gdbthread.h"
56 #include "target.h"
57 #include "inferior.h"
58 #include <fcntl.h>
59 #include "gdb_stat.h"
60 #include <dlfcn.h>
61 #include "gdbcmd.h"
62 #include "gdbcore.h"
63 #include "regcache.h"
64 #include "solib.h"
65 #include "symfile.h"
66 #include "observer.h"
67 #include "gdb_string.h"
68 #include "procfs.h"
69
70 struct target_ops sol_thread_ops;
71
72 /* Prototypes for supply_gregset etc.  */
73 #include "gregset.h"
74
75 /* This struct is defined by us, but mainly used for the proc_service
76    interface.  We don't have much use for it, except as a handy place
77    to get a real PID for memory accesses.  */
78
79 struct ps_prochandle
80 {
81   ptid_t ptid;
82 };
83
84 struct string_map
85 {
86   int num;
87   char *str;
88 };
89
90 static struct ps_prochandle main_ph;
91 static td_thragent_t *main_ta;
92 static int sol_thread_active = 0;
93
94 static void init_sol_thread_ops (void);
95
96 /* Default definitions: These must be defined in tm.h if they are to
97    be shared with a process module such as procfs.  */
98
99 #define GET_PID(ptid)           ptid_get_pid (ptid)
100 #define GET_LWP(ptid)           ptid_get_lwp (ptid)
101 #define GET_THREAD(ptid)        ptid_get_tid (ptid)
102
103 #define is_lwp(ptid)            (GET_LWP (ptid) != 0)
104 #define is_thread(ptid)         (GET_THREAD (ptid) != 0)
105
106 #define BUILD_LWP(lwp, pid)     ptid_build (pid, lwp, 0)
107 #define BUILD_THREAD(tid, pid)  ptid_build (pid, 0, tid)
108
109 /* Pointers to routines from libthread_db resolved by dlopen().  */
110
111 static void (*p_td_log)(const int on_off);
112 static td_err_e (*p_td_ta_new)(const struct ps_prochandle *ph_p,
113                                td_thragent_t **ta_pp);
114 static td_err_e (*p_td_ta_delete)(td_thragent_t *ta_p);
115 static td_err_e (*p_td_init)(void);
116 static td_err_e (*p_td_ta_get_ph)(const td_thragent_t *ta_p,
117                                   struct ps_prochandle **ph_pp);
118 static td_err_e (*p_td_ta_get_nthreads)(const td_thragent_t *ta_p,
119                                         int *nthread_p);
120 static td_err_e (*p_td_ta_tsd_iter)(const td_thragent_t *ta_p,
121                                     td_key_iter_f *cb, void *cbdata_p);
122 static td_err_e (*p_td_ta_thr_iter)(const td_thragent_t *ta_p,
123                                     td_thr_iter_f *cb, void *cbdata_p,
124                                     td_thr_state_e state, int ti_pri,
125                                     sigset_t *ti_sigmask_p,
126                                     unsigned ti_user_flags);
127 static td_err_e (*p_td_thr_validate)(const td_thrhandle_t *th_p);
128 static td_err_e (*p_td_thr_tsd)(const td_thrhandle_t * th_p,
129                                 const thread_key_t key, void **data_pp);
130 static td_err_e (*p_td_thr_get_info)(const td_thrhandle_t *th_p,
131                                      td_thrinfo_t *ti_p);
132 static td_err_e (*p_td_thr_getfpregs)(const td_thrhandle_t *th_p,
133                                       prfpregset_t *fpregset);
134 static td_err_e (*p_td_thr_getxregsize)(const td_thrhandle_t *th_p,
135                                         int *xregsize);
136 static td_err_e (*p_td_thr_getxregs)(const td_thrhandle_t *th_p,
137                                      const caddr_t xregset);
138 static td_err_e (*p_td_thr_sigsetmask)(const td_thrhandle_t *th_p,
139                                        const sigset_t ti_sigmask);
140 static td_err_e (*p_td_thr_setprio)(const td_thrhandle_t *th_p,
141                                     const int ti_pri);
142 static td_err_e (*p_td_thr_setsigpending)(const td_thrhandle_t *th_p,
143                                           const uchar_t ti_pending_flag,
144                                           const sigset_t ti_pending);
145 static td_err_e (*p_td_thr_setfpregs)(const td_thrhandle_t *th_p,
146                                       const prfpregset_t *fpregset);
147 static td_err_e (*p_td_thr_setxregs)(const td_thrhandle_t *th_p,
148                                      const caddr_t xregset);
149 static td_err_e (*p_td_ta_map_id2thr)(const td_thragent_t *ta_p,
150                                       thread_t tid,
151                                       td_thrhandle_t *th_p);
152 static td_err_e (*p_td_ta_map_lwp2thr)(const td_thragent_t *ta_p,
153                                        lwpid_t lwpid,
154                                        td_thrhandle_t *th_p);
155 static td_err_e (*p_td_thr_getgregs)(const td_thrhandle_t *th_p,
156                                      prgregset_t regset);
157 static td_err_e (*p_td_thr_setgregs)(const td_thrhandle_t *th_p,
158                                      const prgregset_t regset);
159 \f
160
161 /* Return the libthread_db error string associated with ERRCODE.  If
162    ERRCODE is unknown, return an appropriate message.  */
163
164 static char *
165 td_err_string (td_err_e errcode)
166 {
167   static struct string_map td_err_table[] =
168   {
169     { TD_OK, "generic \"call succeeded\"" },
170     { TD_ERR, "generic error." },
171     { TD_NOTHR, "no thread can be found to satisfy query" },
172     { TD_NOSV, "no synch. variable can be found to satisfy query" },
173     { TD_NOLWP, "no lwp can be found to satisfy query" },
174     { TD_BADPH, "invalid process handle" },
175     { TD_BADTH, "invalid thread handle" },
176     { TD_BADSH, "invalid synchronization handle" },
177     { TD_BADTA, "invalid thread agent" },
178     { TD_BADKEY, "invalid key" },
179     { TD_NOMSG, "td_thr_event_getmsg() called when there was no message" },
180     { TD_NOFPREGS, "FPU register set not available for given thread" },
181     { TD_NOLIBTHREAD, "application not linked with libthread" },
182     { TD_NOEVENT, "requested event is not supported" },
183     { TD_NOCAPAB, "capability not available" },
184     { TD_DBERR, "Debugger service failed" },
185     { TD_NOAPLIC, "Operation not applicable to" },
186     { TD_NOTSD, "No thread specific data for this thread" },
187     { TD_MALLOC, "Malloc failed" },
188     { TD_PARTIALREG, "Only part of register set was written/read" },
189     { TD_NOXREGS, "X register set not available for given thread" }
190   };
191   const int td_err_size = sizeof td_err_table / sizeof (struct string_map);
192   int i;
193   static char buf[50];
194
195   for (i = 0; i < td_err_size; i++)
196     if (td_err_table[i].num == errcode)
197       return td_err_table[i].str;
198
199   sprintf (buf, "Unknown libthread_db error code: %d", errcode);
200
201   return buf;
202 }
203
204 /* Return the libthread_db state string assicoated with STATECODE.
205    If STATECODE is unknown, return an appropriate message.  */
206
207 static char *
208 td_state_string (td_thr_state_e statecode)
209 {
210   static struct string_map td_thr_state_table[] =
211   {
212     { TD_THR_ANY_STATE, "any state" },
213     { TD_THR_UNKNOWN, "unknown" },
214     { TD_THR_STOPPED, "stopped" },
215     { TD_THR_RUN, "run" },
216     { TD_THR_ACTIVE, "active" },
217     { TD_THR_ZOMBIE, "zombie" },
218     { TD_THR_SLEEP, "sleep" },
219     { TD_THR_STOPPED_ASLEEP, "stopped asleep" }
220   };
221   const int td_thr_state_table_size =
222     sizeof td_thr_state_table / sizeof (struct string_map);
223   int i;
224   static char buf[50];
225
226   for (i = 0; i < td_thr_state_table_size; i++)
227     if (td_thr_state_table[i].num == statecode)
228       return td_thr_state_table[i].str;
229
230   sprintf (buf, "Unknown libthread_db state code: %d", statecode);
231
232   return buf;
233 }
234 \f
235
236 /* Convert a POSIX or Solaris thread ID into a LWP ID.  If THREAD_ID
237    doesn't exist, that's an error.  If it's an inactive thread, return
238    DEFAULT_LWP.
239
240    NOTE: This function probably shouldn't call error().  */
241
242 static ptid_t
243 thread_to_lwp (ptid_t thread_id, int default_lwp)
244 {
245   td_thrinfo_t ti;
246   td_thrhandle_t th;
247   td_err_e val;
248
249   if (is_lwp (thread_id))
250     return thread_id;           /* It's already an LWP ID.  */
251
252   /* It's a thread.  Convert to LWP.  */
253
254   val = p_td_ta_map_id2thr (main_ta, GET_THREAD (thread_id), &th);
255   if (val == TD_NOTHR)
256     return pid_to_ptid (-1);    /* Thread must have terminated.  */
257   else if (val != TD_OK)
258     error (_("thread_to_lwp: td_ta_map_id2thr %s"), td_err_string (val));
259
260   val = p_td_thr_get_info (&th, &ti);
261   if (val == TD_NOTHR)
262     return pid_to_ptid (-1);    /* Thread must have terminated.  */
263   else if (val != TD_OK)
264     error (_("thread_to_lwp: td_thr_get_info: %s"), td_err_string (val));
265
266   if (ti.ti_state != TD_THR_ACTIVE)
267     {
268       if (default_lwp != -1)
269         return pid_to_ptid (default_lwp);
270       error (_("thread_to_lwp: thread state not active: %s"),
271              td_state_string (ti.ti_state));
272     }
273
274   return BUILD_LWP (ti.ti_lid, PIDGET (thread_id));
275 }
276
277 /* Convert an LWP ID into a POSIX or Solaris thread ID.  If LWP_ID
278    doesn't exists, that's an error.
279
280    NOTE: This function probably shouldn't call error().  */
281
282 static ptid_t
283 lwp_to_thread (ptid_t lwp)
284 {
285   td_thrinfo_t ti;
286   td_thrhandle_t th;
287   td_err_e val;
288
289   if (is_thread (lwp))
290     return lwp;                 /* It's already a thread ID.  */
291
292   /* It's an LWP.  Convert it to a thread ID.  */
293
294   if (!target_thread_alive (lwp))
295     return pid_to_ptid (-1);    /* Must be a defunct LPW.  */
296
297   val = p_td_ta_map_lwp2thr (main_ta, GET_LWP (lwp), &th);
298   if (val == TD_NOTHR)
299     return pid_to_ptid (-1);    /* Thread must have terminated.  */
300   else if (val != TD_OK)
301     error (_("lwp_to_thread: td_ta_map_lwp2thr: %s."), td_err_string (val));
302
303   val = p_td_thr_validate (&th);
304   if (val == TD_NOTHR)
305     return lwp;                 /* Unknown to libthread; just return LPW,  */
306   else if (val != TD_OK)
307     error (_("lwp_to_thread: td_thr_validate: %s."), td_err_string (val));
308
309   val = p_td_thr_get_info (&th, &ti);
310   if (val == TD_NOTHR)
311     return pid_to_ptid (-1);    /* Thread must have terminated.  */
312   else if (val != TD_OK)
313     error (_("lwp_to_thread: td_thr_get_info: %s."), td_err_string (val));
314
315   return BUILD_THREAD (ti.ti_tid, PIDGET (lwp));
316 }
317 \f
318
319 /* Most target vector functions from here on actually just pass
320    through to the layer beneath, as they don't need to do anything
321    specific for threads.  */
322
323 /* Take a program previously attached to and detaches it.  The program
324    resumes execution and will no longer stop on signals, etc.  We'd
325    better not have left any breakpoints in the program or it'll die
326    when it hits one.  For this to work, it may be necessary for the
327    process to have been previously attached.  It *might* work if the
328    program was started via the normal ptrace (PTRACE_TRACEME).  */
329
330 static void
331 sol_thread_detach (struct target_ops *ops, char *args, int from_tty)
332 {
333   struct target_ops *beneath = find_target_beneath (ops);
334
335   sol_thread_active = 0;
336   inferior_ptid = pid_to_ptid (PIDGET (main_ph.ptid));
337   unpush_target (ops);
338   beneath->to_detach (beneath, args, from_tty);
339 }
340
341 /* Resume execution of process PTID.  If STEP is nozero, then just
342    single step it.  If SIGNAL is nonzero, restart it with that signal
343    activated.  We may have to convert PTID from a thread ID to an LWP
344    ID for procfs.  */
345
346 static void
347 sol_thread_resume (struct target_ops *ops,
348                    ptid_t ptid, int step, enum gdb_signal signo)
349 {
350   struct cleanup *old_chain;
351   struct target_ops *beneath = find_target_beneath (ops);
352
353   old_chain = save_inferior_ptid ();
354
355   inferior_ptid = thread_to_lwp (inferior_ptid, PIDGET (main_ph.ptid));
356   if (PIDGET (inferior_ptid) == -1)
357     inferior_ptid = procfs_first_available ();
358
359   if (PIDGET (ptid) != -1)
360     {
361       ptid_t save_ptid = ptid;
362
363       ptid = thread_to_lwp (ptid, -2);
364       if (PIDGET (ptid) == -2)          /* Inactive thread.  */
365         error (_("This version of Solaris can't start inactive threads."));
366       if (info_verbose && PIDGET (ptid) == -1)
367         warning (_("Specified thread %ld seems to have terminated"),
368                  GET_THREAD (save_ptid));
369     }
370
371   beneath->to_resume (beneath, ptid, step, signo);
372
373   do_cleanups (old_chain);
374 }
375
376 /* Wait for any threads to stop.  We may have to convert PTID from a
377    thread ID to an LWP ID, and vice versa on the way out.  */
378
379 static ptid_t
380 sol_thread_wait (struct target_ops *ops,
381                  ptid_t ptid, struct target_waitstatus *ourstatus, int options)
382 {
383   ptid_t rtnval;
384   ptid_t save_ptid;
385   struct target_ops *beneath = find_target_beneath (ops);
386   struct cleanup *old_chain;
387
388   save_ptid = inferior_ptid;
389   old_chain = save_inferior_ptid ();
390
391   inferior_ptid = thread_to_lwp (inferior_ptid, PIDGET (main_ph.ptid));
392   if (PIDGET (inferior_ptid) == -1)
393     inferior_ptid = procfs_first_available ();
394
395   if (PIDGET (ptid) != -1)
396     {
397       ptid_t save_ptid = ptid;
398
399       ptid = thread_to_lwp (ptid, -2);
400       if (PIDGET (ptid) == -2)          /* Inactive thread.  */
401         error (_("This version of Solaris can't start inactive threads."));
402       if (info_verbose && PIDGET (ptid) == -1)
403         warning (_("Specified thread %ld seems to have terminated"),
404                  GET_THREAD (save_ptid));
405     }
406
407   rtnval = beneath->to_wait (beneath, ptid, ourstatus, options);
408
409   if (ourstatus->kind != TARGET_WAITKIND_EXITED)
410     {
411       /* Map the LWP of interest back to the appropriate thread ID.  */
412       rtnval = lwp_to_thread (rtnval);
413       if (PIDGET (rtnval) == -1)
414         rtnval = save_ptid;
415
416       /* See if we have a new thread.  */
417       if (is_thread (rtnval)
418           && !ptid_equal (rtnval, save_ptid)
419           && (!in_thread_list (rtnval)
420               || is_exited (rtnval)))
421         add_thread (rtnval);
422     }
423
424   /* During process initialization, we may get here without the thread
425      package being initialized, since that can only happen after we've
426      found the shared libs.  */
427
428   do_cleanups (old_chain);
429
430   return rtnval;
431 }
432
433 static void
434 sol_thread_fetch_registers (struct target_ops *ops,
435                             struct regcache *regcache, int regnum)
436 {
437   thread_t thread;
438   td_thrhandle_t thandle;
439   td_err_e val;
440   prgregset_t gregset;
441   prfpregset_t fpregset;
442   gdb_gregset_t *gregset_p = &gregset;
443   gdb_fpregset_t *fpregset_p = &fpregset;
444   struct target_ops *beneath = find_target_beneath (ops);
445
446 #if 0
447   int xregsize;
448   caddr_t xregset;
449 #endif
450
451   if (!is_thread (inferior_ptid))
452     {
453       /* It's an LWP; pass the request on to the layer beneath.  */
454       beneath->to_fetch_registers (beneath, regcache, regnum);
455       return;
456     }
457
458   /* Solaris thread: convert INFERIOR_PTID into a td_thrhandle_t.  */
459   thread = GET_THREAD (inferior_ptid);
460   if (thread == 0)
461     error (_("sol_thread_fetch_registers: thread == 0"));
462
463   val = p_td_ta_map_id2thr (main_ta, thread, &thandle);
464   if (val != TD_OK)
465     error (_("sol_thread_fetch_registers: td_ta_map_id2thr: %s"),
466            td_err_string (val));
467
468   /* Get the general-purpose registers.  */
469
470   val = p_td_thr_getgregs (&thandle, gregset);
471   if (val != TD_OK && val != TD_PARTIALREG)
472     error (_("sol_thread_fetch_registers: td_thr_getgregs %s"),
473            td_err_string (val));
474
475   /* For SPARC, TD_PARTIALREG means that only %i0...%i7, %l0..%l7, %pc
476      and %sp are saved (by a thread context switch).  */
477
478   /* And, now the floating-point registers.  */
479
480   val = p_td_thr_getfpregs (&thandle, &fpregset);
481   if (val != TD_OK && val != TD_NOFPREGS)
482     error (_("sol_thread_fetch_registers: td_thr_getfpregs %s"),
483            td_err_string (val));
484
485   /* Note that we must call supply_gregset and supply_fpregset *after*
486      calling the td routines because the td routines call ps_lget*
487      which affect the values stored in the registers array.  */
488
489   supply_gregset (regcache, (const gdb_gregset_t *) gregset_p);
490   supply_fpregset (regcache, (const gdb_fpregset_t *) fpregset_p);
491
492 #if 0
493   /* FIXME: libthread_db doesn't seem to handle this right.  */
494   val = td_thr_getxregsize (&thandle, &xregsize);
495   if (val != TD_OK && val != TD_NOXREGS)
496     error (_("sol_thread_fetch_registers: td_thr_getxregsize %s"),
497            td_err_string (val));
498
499   if (val == TD_OK)
500     {
501       xregset = alloca (xregsize);
502       val = td_thr_getxregs (&thandle, xregset);
503       if (val != TD_OK)
504         error (_("sol_thread_fetch_registers: td_thr_getxregs %s"),
505                td_err_string (val));
506     }
507 #endif
508 }
509
510 static void
511 sol_thread_store_registers (struct target_ops *ops,
512                             struct regcache *regcache, int regnum)
513 {
514   thread_t thread;
515   td_thrhandle_t thandle;
516   td_err_e val;
517   prgregset_t gregset;
518   prfpregset_t fpregset;
519 #if 0
520   int xregsize;
521   caddr_t xregset;
522 #endif
523
524   if (!is_thread (inferior_ptid))
525     {
526       struct target_ops *beneath = find_target_beneath (ops);
527
528       /* It's an LWP; pass the request on to the layer beneath.  */
529       beneath->to_store_registers (beneath, regcache, regnum);
530       return;
531     }
532
533   /* Solaris thread: convert INFERIOR_PTID into a td_thrhandle_t.  */
534   thread = GET_THREAD (inferior_ptid);
535
536   val = p_td_ta_map_id2thr (main_ta, thread, &thandle);
537   if (val != TD_OK)
538     error (_("sol_thread_store_registers: td_ta_map_id2thr %s"),
539            td_err_string (val));
540
541   if (regnum != -1)
542     {
543       /* Not writing all the registers.  */
544       char old_value[MAX_REGISTER_SIZE];
545
546       /* Save new register value.  */
547       regcache_raw_collect (regcache, regnum, old_value);
548
549       val = p_td_thr_getgregs (&thandle, gregset);
550       if (val != TD_OK)
551         error (_("sol_thread_store_registers: td_thr_getgregs %s"),
552                td_err_string (val));
553       val = p_td_thr_getfpregs (&thandle, &fpregset);
554       if (val != TD_OK)
555         error (_("sol_thread_store_registers: td_thr_getfpregs %s"),
556                td_err_string (val));
557
558       /* Restore new register value.  */
559       regcache_raw_supply (regcache, regnum, old_value);
560
561 #if 0
562       /* FIXME: libthread_db doesn't seem to handle this right.  */
563       val = td_thr_getxregsize (&thandle, &xregsize);
564       if (val != TD_OK && val != TD_NOXREGS)
565         error (_("sol_thread_store_registers: td_thr_getxregsize %s"),
566                td_err_string (val));
567
568       if (val == TD_OK)
569         {
570           xregset = alloca (xregsize);
571           val = td_thr_getxregs (&thandle, xregset);
572           if (val != TD_OK)
573             error (_("sol_thread_store_registers: td_thr_getxregs %s"),
574                    td_err_string (val));
575         }
576 #endif
577     }
578
579   fill_gregset (regcache, (gdb_gregset_t *) &gregset, regnum);
580   fill_fpregset (regcache, (gdb_fpregset_t *) &fpregset, regnum);
581
582   val = p_td_thr_setgregs (&thandle, gregset);
583   if (val != TD_OK)
584     error (_("sol_thread_store_registers: td_thr_setgregs %s"),
585            td_err_string (val));
586   val = p_td_thr_setfpregs (&thandle, &fpregset);
587   if (val != TD_OK)
588     error (_("sol_thread_store_registers: td_thr_setfpregs %s"),
589            td_err_string (val));
590
591 #if 0
592   /* FIXME: libthread_db doesn't seem to handle this right.  */
593   val = td_thr_getxregsize (&thandle, &xregsize);
594   if (val != TD_OK && val != TD_NOXREGS)
595     error (_("sol_thread_store_registers: td_thr_getxregsize %s"),
596            td_err_string (val));
597
598   /* ??? Should probably do something about writing the xregs here,
599      but what are they?  */
600 #endif
601 }
602
603 /* Perform partial transfers on OBJECT.  See target_read_partial and
604    target_write_partial for details of each variant.  One, and only
605    one, of readbuf or writebuf must be non-NULL.  */
606
607 static LONGEST
608 sol_thread_xfer_partial (struct target_ops *ops, enum target_object object,
609                           const char *annex, gdb_byte *readbuf,
610                           const gdb_byte *writebuf,
611                          ULONGEST offset, LONGEST len)
612 {
613   int retval;
614   struct cleanup *old_chain;
615   struct target_ops *beneath = find_target_beneath (ops);
616
617   old_chain = save_inferior_ptid ();
618
619   if (is_thread (inferior_ptid) || !target_thread_alive (inferior_ptid))
620     {
621       /* It's either a thread or an LWP that isn't alive.  Any live
622          LWP will do so use the first available.
623
624          NOTE: We don't need to call switch_to_thread; we're just
625          reading memory.  */
626       inferior_ptid = procfs_first_available ();
627     }
628
629   retval = beneath->to_xfer_partial (beneath, object, annex,
630                                      readbuf, writebuf, offset, len);
631
632   do_cleanups (old_chain);
633
634   return retval;
635 }
636
637 static void
638 check_for_thread_db (void)
639 {
640   td_err_e err;
641   ptid_t ptid;
642
643   /* Do nothing if we couldn't load libthread_db.so.1.  */
644   if (p_td_ta_new == NULL)
645     return;
646
647   if (sol_thread_active)
648     /* Nothing to do.  The thread library was already detected and the
649        target vector was already activated.  */
650     return;
651
652   /* Now, initialize libthread_db.  This needs to be done after the
653      shared libraries are located because it needs information from
654      the user's thread library.  */
655
656   err = p_td_init ();
657   if (err != TD_OK)
658     {
659       warning (_("sol_thread_new_objfile: td_init: %s"), td_err_string (err));
660       return;
661     }
662
663   /* Now attempt to open a connection to the thread library.  */
664   err = p_td_ta_new (&main_ph, &main_ta);
665   switch (err)
666     {
667     case TD_NOLIBTHREAD:
668       /* No thread library was detected.  */
669       break;
670
671     case TD_OK:
672       printf_unfiltered (_("[Thread debugging using libthread_db enabled]\n"));
673
674       /* The thread library was detected.  Activate the sol_thread target.  */
675       push_target (&sol_thread_ops);
676       sol_thread_active = 1;
677
678       main_ph.ptid = inferior_ptid; /* Save for xfer_memory.  */
679       ptid = lwp_to_thread (inferior_ptid);
680       if (PIDGET (ptid) != -1)
681         inferior_ptid = ptid;
682
683       target_find_new_threads ();
684       break;
685
686     default:
687       warning (_("Cannot initialize thread debugging library: %s"),
688                td_err_string (err));
689       break;
690     }
691 }
692
693 /* This routine is called whenever a new symbol table is read in, or
694    when all symbol tables are removed.  libthread_db can only be
695    initialized when it finds the right variables in libthread.so.
696    Since it's a shared library, those variables don't show up until
697    the library gets mapped and the symbol table is read in.  */
698
699 static void
700 sol_thread_new_objfile (struct objfile *objfile)
701 {
702   if (objfile != NULL)
703     check_for_thread_db ();
704 }
705
706 /* Clean up after the inferior dies.  */
707
708 static void
709 sol_thread_mourn_inferior (struct target_ops *ops)
710 {
711   struct target_ops *beneath = find_target_beneath (ops);
712
713   sol_thread_active = 0;
714
715   unpush_target (ops);
716
717   beneath->to_mourn_inferior (beneath);
718 }
719
720 /* Return true if PTID is still active in the inferior.  */
721
722 static int
723 sol_thread_alive (struct target_ops *ops, ptid_t ptid)
724 {
725   if (is_thread (ptid))
726     {
727       /* It's a (user-level) thread.  */
728       td_err_e val;
729       td_thrhandle_t th;
730       int pid;
731
732       pid = GET_THREAD (ptid);
733       if ((val = p_td_ta_map_id2thr (main_ta, pid, &th)) != TD_OK)
734         return 0;               /* Thread not found.  */
735       if ((val = p_td_thr_validate (&th)) != TD_OK)
736         return 0;               /* Thread not valid.  */
737       return 1;                 /* Known thread.  */
738     }
739   else
740     {
741       struct target_ops *beneath = find_target_beneath (ops);
742
743       /* It's an LPW; pass the request on to the layer below.  */
744       return beneath->to_thread_alive (beneath, ptid);
745     }
746 }
747
748 \f
749 /* These routines implement the lower half of the thread_db interface,
750    i.e. the ps_* routines.  */
751
752 /* Various versions of <proc_service.h> have slightly different
753    function prototypes.  In particular, we have
754
755    NEWER                        OLDER
756    struct ps_prochandle *       const struct ps_prochandle *
757    void*                        char*
758    const void*                  char*
759    int                          size_t
760
761    Which one you have depends on the Solaris version and what patches
762    you've applied.  On the theory that there are only two major
763    variants, we have configure check the prototype of ps_pdwrite (),
764    and use that info to make appropriate typedefs here.  */
765
766 #ifdef PROC_SERVICE_IS_OLD
767 typedef const struct ps_prochandle *gdb_ps_prochandle_t;
768 typedef char *gdb_ps_read_buf_t;
769 typedef char *gdb_ps_write_buf_t;
770 typedef int gdb_ps_size_t;
771 typedef psaddr_t gdb_ps_addr_t;
772 #else
773 typedef struct ps_prochandle *gdb_ps_prochandle_t;
774 typedef void *gdb_ps_read_buf_t;
775 typedef const void *gdb_ps_write_buf_t;
776 typedef size_t gdb_ps_size_t;
777 typedef psaddr_t gdb_ps_addr_t;
778 #endif
779
780 /* The next four routines are called by libthread_db to tell us to
781    stop and stop a particular process or lwp.  Since GDB ensures that
782    these are all stopped by the time we call anything in thread_db,
783    these routines need to do nothing.  */
784
785 /* Process stop.  */
786
787 ps_err_e
788 ps_pstop (gdb_ps_prochandle_t ph)
789 {
790   return PS_OK;
791 }
792
793 /* Process continue.  */
794
795 ps_err_e
796 ps_pcontinue (gdb_ps_prochandle_t ph)
797 {
798   return PS_OK;
799 }
800
801 /* LWP stop.  */
802
803 ps_err_e
804 ps_lstop (gdb_ps_prochandle_t ph, lwpid_t lwpid)
805 {
806   return PS_OK;
807 }
808
809 /* LWP continue.  */
810
811 ps_err_e
812 ps_lcontinue (gdb_ps_prochandle_t ph, lwpid_t lwpid)
813 {
814   return PS_OK;
815 }
816
817 /* Looks up the symbol LD_SYMBOL_NAME in the debugger's symbol table.  */
818
819 ps_err_e
820 ps_pglobal_lookup (gdb_ps_prochandle_t ph, const char *ld_object_name,
821                    const char *ld_symbol_name, gdb_ps_addr_t *ld_symbol_addr)
822 {
823   struct minimal_symbol *ms;
824
825   ms = lookup_minimal_symbol (ld_symbol_name, NULL, NULL);
826   if (!ms)
827     return PS_NOSYM;
828
829   *ld_symbol_addr = SYMBOL_VALUE_ADDRESS (ms);
830   return PS_OK;
831 }
832
833 /* Common routine for reading and writing memory.  */
834
835 static ps_err_e
836 rw_common (int dowrite, const struct ps_prochandle *ph, gdb_ps_addr_t addr,
837            char *buf, int size)
838 {
839   int ret;
840   struct cleanup *old_chain;
841
842   old_chain = save_inferior_ptid ();
843
844   if (is_thread (inferior_ptid) || !target_thread_alive (inferior_ptid))
845     {
846       /* It's either a thread or an LWP that isn't alive.  Any live
847          LWP will do so use the first available.
848
849          NOTE: We don't need to call switch_to_thread; we're just
850          reading memory.  */
851       inferior_ptid = procfs_first_available ();
852     }
853
854 #if defined (__sparcv9)
855   /* For Sparc64 cross Sparc32, make sure the address has not been
856      accidentally sign-extended (or whatever) to beyond 32 bits.  */
857   if (bfd_get_arch_size (exec_bfd) == 32)
858     addr &= 0xffffffff;
859 #endif
860
861   if (dowrite)
862     ret = target_write_memory (addr, buf, size);
863   else
864     ret = target_read_memory (addr, buf, size);
865
866   do_cleanups (old_chain);
867
868   return (ret == 0 ? PS_OK : PS_ERR);
869 }
870
871 /* Copies SIZE bytes from target process .data segment to debugger memory.  */
872
873 ps_err_e
874 ps_pdread (gdb_ps_prochandle_t ph, gdb_ps_addr_t addr,
875            gdb_ps_read_buf_t buf, gdb_ps_size_t size)
876 {
877   return rw_common (0, ph, addr, buf, size);
878 }
879
880 /* Copies SIZE bytes from debugger memory .data segment to target process.  */
881
882 ps_err_e
883 ps_pdwrite (gdb_ps_prochandle_t ph, gdb_ps_addr_t addr,
884             gdb_ps_write_buf_t buf, gdb_ps_size_t size)
885 {
886   return rw_common (1, ph, addr, (char *) buf, size);
887 }
888
889 /* Copies SIZE bytes from target process .text segment to debugger memory.  */
890
891 ps_err_e
892 ps_ptread (gdb_ps_prochandle_t ph, gdb_ps_addr_t addr,
893            gdb_ps_read_buf_t buf, gdb_ps_size_t size)
894 {
895   return rw_common (0, ph, addr, buf, size);
896 }
897
898 /* Copies SIZE bytes from debugger memory .text segment to target process.  */
899
900 ps_err_e
901 ps_ptwrite (gdb_ps_prochandle_t ph, gdb_ps_addr_t addr,
902             gdb_ps_write_buf_t buf, gdb_ps_size_t size)
903 {
904   return rw_common (1, ph, addr, (char *) buf, size);
905 }
906
907 /* Get general-purpose registers for LWP.  */
908
909 ps_err_e
910 ps_lgetregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, prgregset_t gregset)
911 {
912   struct cleanup *old_chain;
913   struct regcache *regcache;
914
915   old_chain = save_inferior_ptid ();
916
917   inferior_ptid = BUILD_LWP (lwpid, PIDGET (inferior_ptid));
918   regcache = get_thread_arch_regcache (inferior_ptid, target_gdbarch);
919
920   target_fetch_registers (regcache, -1);
921   fill_gregset (regcache, (gdb_gregset_t *) gregset, -1);
922
923   do_cleanups (old_chain);
924
925   return PS_OK;
926 }
927
928 /* Set general-purpose registers for LWP.  */
929
930 ps_err_e
931 ps_lsetregs (gdb_ps_prochandle_t ph, lwpid_t lwpid,
932              const prgregset_t gregset)
933 {
934   struct cleanup *old_chain;
935   struct regcache *regcache;
936
937   old_chain = save_inferior_ptid ();
938
939   inferior_ptid = BUILD_LWP (lwpid, PIDGET (inferior_ptid));
940   regcache = get_thread_arch_regcache (inferior_ptid, target_gdbarch);
941
942   supply_gregset (regcache, (const gdb_gregset_t *) gregset);
943   target_store_registers (regcache, -1);
944
945   do_cleanups (old_chain);
946
947   return PS_OK;
948 }
949
950 /* Log a message (sends to gdb_stderr).  */
951
952 void
953 ps_plog (const char *fmt, ...)
954 {
955   va_list args;
956
957   va_start (args, fmt);
958
959   vfprintf_filtered (gdb_stderr, fmt, args);
960 }
961
962 #if defined (__sparc) || defined (__sparcv9)
963
964 /* Get size of extra register set.  Currently a noop.  */
965
966 ps_err_e
967 ps_lgetxregsize (gdb_ps_prochandle_t ph, lwpid_t lwpid, int *xregsize)
968 {
969   return PS_OK;
970 }
971
972 /* Get extra register set.  Currently a noop.  */
973
974 ps_err_e
975 ps_lgetxregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, caddr_t xregset)
976 {
977   return PS_OK;
978 }
979
980 /* Set extra register set.  Currently a noop.  */
981
982 ps_err_e
983 ps_lsetxregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, caddr_t xregset)
984 {
985   return PS_OK;
986 }
987
988 #endif /* defined (__sparc) || defined (__sparcv9) */
989
990 /* Get floating-point registers for LWP.  */
991
992 ps_err_e
993 ps_lgetfpregs (gdb_ps_prochandle_t ph, lwpid_t lwpid,
994                prfpregset_t *fpregset)
995 {
996   struct cleanup *old_chain;
997   struct regcache *regcache;
998
999   old_chain = save_inferior_ptid ();
1000
1001   inferior_ptid = BUILD_LWP (lwpid, PIDGET (inferior_ptid));
1002   regcache = get_thread_arch_regcache (inferior_ptid, target_gdbarch);
1003
1004   target_fetch_registers (regcache, -1);
1005   fill_fpregset (regcache, (gdb_fpregset_t *) fpregset, -1);
1006
1007   do_cleanups (old_chain);
1008
1009   return PS_OK;
1010 }
1011
1012 /* Set floating-point regs for LWP.  */
1013
1014 ps_err_e
1015 ps_lsetfpregs (gdb_ps_prochandle_t ph, lwpid_t lwpid,
1016                const prfpregset_t * fpregset)
1017 {
1018   struct cleanup *old_chain;
1019   struct regcache *regcache;
1020
1021   old_chain = save_inferior_ptid ();
1022
1023   inferior_ptid = BUILD_LWP (lwpid, PIDGET (inferior_ptid));
1024   regcache = get_thread_arch_regcache (inferior_ptid, target_gdbarch);
1025
1026   supply_fpregset (regcache, (const gdb_fpregset_t *) fpregset);
1027   target_store_registers (regcache, -1);
1028
1029   do_cleanups (old_chain);
1030
1031   return PS_OK;
1032 }
1033
1034 #ifdef PR_MODEL_LP64
1035 /* Identify process as 32-bit or 64-bit.  At the moment we're using
1036    BFD to do this.  There might be a more Solaris-specific
1037    (e.g. procfs) method, but this ought to work.  */
1038
1039 ps_err_e
1040 ps_pdmodel (gdb_ps_prochandle_t ph, int *data_model)
1041 {
1042   if (exec_bfd == 0)
1043     *data_model = PR_MODEL_UNKNOWN;
1044   else if (bfd_get_arch_size (exec_bfd) == 32)
1045     *data_model = PR_MODEL_ILP32;
1046   else
1047     *data_model = PR_MODEL_LP64;
1048
1049   return PS_OK;
1050 }
1051 #endif /* PR_MODEL_LP64 */
1052
1053 #if (defined(__i386__) || defined(__x86_64__)) && defined (sun)
1054
1055 /* Reads the local descriptor table of a LWP.
1056
1057    This function is necessary on x86-solaris only.  Without it, the loading
1058    of libthread_db would fail because of ps_lgetLDT being undefined.  */
1059
1060 ps_err_e
1061 ps_lgetLDT (gdb_ps_prochandle_t ph, lwpid_t lwpid,
1062             struct ssd *pldt)
1063 {
1064   /* NOTE: only used on Solaris, therefore OK to refer to procfs.c.  */
1065   struct ssd *ret;
1066
1067   /* FIXME: can't I get the process ID from the prochandle or
1068      something?  */
1069
1070   if (PIDGET (inferior_ptid) <= 0 || lwpid <= 0)
1071     return PS_BADLID;
1072
1073   ret = procfs_find_LDT_entry (BUILD_LWP (lwpid, PIDGET (inferior_ptid)));
1074   if (ret)
1075     {
1076       memcpy (pldt, ret, sizeof (struct ssd));
1077       return PS_OK;
1078     }
1079   else
1080     /* LDT not found.  */
1081     return PS_ERR;
1082 }
1083 #endif
1084 \f
1085
1086 /* Convert PTID to printable form.  */
1087
1088 static char *
1089 solaris_pid_to_str (struct target_ops *ops, ptid_t ptid)
1090 {
1091   static char buf[100];
1092
1093   if (is_thread (ptid))
1094     {
1095       ptid_t lwp;
1096
1097       lwp = thread_to_lwp (ptid, -2);
1098
1099       if (PIDGET (lwp) == -1)
1100         sprintf (buf, "Thread %ld (defunct)", GET_THREAD (ptid));
1101       else if (PIDGET (lwp) != -2)
1102         sprintf (buf, "Thread %ld (LWP %ld)",
1103                  GET_THREAD (ptid), GET_LWP (lwp));
1104       else
1105         sprintf (buf, "Thread %ld        ", GET_THREAD (ptid));
1106     }
1107   else if (GET_LWP (ptid) != 0)
1108     sprintf (buf, "LWP    %ld        ", GET_LWP (ptid));
1109   else
1110     sprintf (buf, "process %d    ", PIDGET (ptid));
1111
1112   return buf;
1113 }
1114 \f
1115
1116 /* Worker bee for find_new_threads.  Callback function that gets
1117    called once per user-level thread (i.e. not for LWP's).  */
1118
1119 static int
1120 sol_find_new_threads_callback (const td_thrhandle_t *th, void *ignored)
1121 {
1122   td_err_e retval;
1123   td_thrinfo_t ti;
1124   ptid_t ptid;
1125
1126   retval = p_td_thr_get_info (th, &ti);
1127   if (retval != TD_OK)
1128     return -1;
1129
1130   ptid = BUILD_THREAD (ti.ti_tid, PIDGET (inferior_ptid));
1131   if (!in_thread_list (ptid) || is_exited (ptid))
1132     add_thread (ptid);
1133
1134   return 0;
1135 }
1136
1137 static void
1138 sol_find_new_threads (struct target_ops *ops)
1139 {
1140   struct target_ops *beneath = find_target_beneath (ops);
1141
1142   /* First Find any new LWP's.  */
1143   if (beneath->to_find_new_threads != NULL)
1144     beneath->to_find_new_threads (beneath);
1145
1146   /* Then find any new user-level threads.  */
1147   p_td_ta_thr_iter (main_ta, sol_find_new_threads_callback, (void *) 0,
1148                     TD_THR_ANY_STATE, TD_THR_LOWEST_PRIORITY,
1149                     TD_SIGNO_MASK, TD_THR_ANY_USER_FLAGS);
1150 }
1151
1152 /* Worker bee for the "info sol-thread" command.  This is a callback
1153    function that gets called once for each Solaris user-level thread
1154    (i.e. not for LWPs) in the inferior.  Print anything interesting
1155    that we can think of.  */
1156
1157 static int
1158 info_cb (const td_thrhandle_t *th, void *s)
1159 {
1160   td_err_e ret;
1161   td_thrinfo_t ti;
1162
1163   ret = p_td_thr_get_info (th, &ti);
1164   if (ret == TD_OK)
1165     {
1166       printf_filtered ("%s thread #%d, lwp %d, ",
1167                        ti.ti_type == TD_THR_SYSTEM ? "system" : "user  ",
1168                        ti.ti_tid, ti.ti_lid);
1169       switch (ti.ti_state)
1170         {
1171         default:
1172         case TD_THR_UNKNOWN:
1173           printf_filtered ("<unknown state>");
1174           break;
1175         case TD_THR_STOPPED:
1176           printf_filtered ("(stopped)");
1177           break;
1178         case TD_THR_RUN:
1179           printf_filtered ("(run)    ");
1180           break;
1181         case TD_THR_ACTIVE:
1182           printf_filtered ("(active) ");
1183           break;
1184         case TD_THR_ZOMBIE:
1185           printf_filtered ("(zombie) ");
1186           break;
1187         case TD_THR_SLEEP:
1188           printf_filtered ("(asleep) ");
1189           break;
1190         case TD_THR_STOPPED_ASLEEP:
1191           printf_filtered ("(stopped asleep)");
1192           break;
1193         }
1194       /* Print thr_create start function.  */
1195       if (ti.ti_startfunc != 0)
1196         {
1197           struct minimal_symbol *msym;
1198           msym = lookup_minimal_symbol_by_pc (ti.ti_startfunc);
1199           if (msym)
1200             printf_filtered ("   startfunc: %s\n",
1201                              SYMBOL_PRINT_NAME (msym));
1202           else
1203             printf_filtered ("   startfunc: %s\n",
1204                              paddress (target_gdbarch, ti.ti_startfunc));
1205         }
1206
1207       /* If thread is asleep, print function that went to sleep.  */
1208       if (ti.ti_state == TD_THR_SLEEP)
1209         {
1210           struct minimal_symbol *msym;
1211           msym = lookup_minimal_symbol_by_pc (ti.ti_pc);
1212           if (msym)
1213             printf_filtered (" - Sleep func: %s\n",
1214                              SYMBOL_PRINT_NAME (msym));
1215           else
1216             printf_filtered (" - Sleep func: %s\n",
1217                              paddress (target_gdbarch, ti.ti_startfunc));
1218         }
1219
1220       /* Wrap up line, if necessary.  */
1221       if (ti.ti_state != TD_THR_SLEEP && ti.ti_startfunc == 0)
1222         printf_filtered ("\n"); /* don't you hate counting newlines?  */
1223     }
1224   else
1225     warning (_("info sol-thread: failed to get info for thread."));
1226
1227   return 0;
1228 }
1229
1230 /* List some state about each Solaris user-level thread in the
1231    inferior.  */
1232
1233 static void
1234 info_solthreads (char *args, int from_tty)
1235 {
1236   p_td_ta_thr_iter (main_ta, info_cb, args,
1237                     TD_THR_ANY_STATE, TD_THR_LOWEST_PRIORITY,
1238                     TD_SIGNO_MASK, TD_THR_ANY_USER_FLAGS);
1239 }
1240
1241 /* Callback routine used to find a thread based on the TID part of
1242    its PTID.  */
1243
1244 static int
1245 thread_db_find_thread_from_tid (struct thread_info *thread, void *data)
1246 {
1247   long *tid = (long *) data;
1248
1249   if (ptid_get_tid (thread->ptid) == *tid)
1250     return 1;
1251
1252   return 0;
1253 }
1254
1255 static ptid_t
1256 sol_get_ada_task_ptid (long lwp, long thread)
1257 {
1258   struct thread_info *thread_info =
1259     iterate_over_threads (thread_db_find_thread_from_tid, &thread);
1260
1261   if (thread_info == NULL)
1262     {
1263       /* The list of threads is probably not up to date.  Find any
1264          thread that is missing from the list, and try again.  */
1265       sol_find_new_threads (&current_target);
1266       thread_info = iterate_over_threads (thread_db_find_thread_from_tid,
1267                                           &thread);
1268     }
1269
1270   gdb_assert (thread_info != NULL);
1271
1272   return (thread_info->ptid);
1273 }
1274
1275 static void
1276 init_sol_thread_ops (void)
1277 {
1278   sol_thread_ops.to_shortname = "solaris-threads";
1279   sol_thread_ops.to_longname = "Solaris threads and pthread.";
1280   sol_thread_ops.to_doc = "Solaris threads and pthread support.";
1281   sol_thread_ops.to_detach = sol_thread_detach;
1282   sol_thread_ops.to_resume = sol_thread_resume;
1283   sol_thread_ops.to_wait = sol_thread_wait;
1284   sol_thread_ops.to_fetch_registers = sol_thread_fetch_registers;
1285   sol_thread_ops.to_store_registers = sol_thread_store_registers;
1286   sol_thread_ops.to_xfer_partial = sol_thread_xfer_partial;
1287   sol_thread_ops.to_mourn_inferior = sol_thread_mourn_inferior;
1288   sol_thread_ops.to_thread_alive = sol_thread_alive;
1289   sol_thread_ops.to_pid_to_str = solaris_pid_to_str;
1290   sol_thread_ops.to_find_new_threads = sol_find_new_threads;
1291   sol_thread_ops.to_stratum = thread_stratum;
1292   sol_thread_ops.to_get_ada_task_ptid = sol_get_ada_task_ptid;
1293   sol_thread_ops.to_magic = OPS_MAGIC;
1294 }
1295
1296 /* Silence -Wmissing-prototypes.  */
1297 extern void _initialize_sol_thread (void);
1298
1299 void
1300 _initialize_sol_thread (void)
1301 {
1302   void *dlhandle;
1303
1304   init_sol_thread_ops ();
1305
1306   dlhandle = dlopen ("libthread_db.so.1", RTLD_NOW);
1307   if (!dlhandle)
1308     goto die;
1309
1310 #define resolve(X) \
1311   if (!(p_##X = dlsym (dlhandle, #X))) \
1312     goto die;
1313
1314   resolve (td_log);
1315   resolve (td_ta_new);
1316   resolve (td_ta_delete);
1317   resolve (td_init);
1318   resolve (td_ta_get_ph);
1319   resolve (td_ta_get_nthreads);
1320   resolve (td_ta_tsd_iter);
1321   resolve (td_ta_thr_iter);
1322   resolve (td_thr_validate);
1323   resolve (td_thr_tsd);
1324   resolve (td_thr_get_info);
1325   resolve (td_thr_getfpregs);
1326   resolve (td_thr_getxregsize);
1327   resolve (td_thr_getxregs);
1328   resolve (td_thr_sigsetmask);
1329   resolve (td_thr_setprio);
1330   resolve (td_thr_setsigpending);
1331   resolve (td_thr_setfpregs);
1332   resolve (td_thr_setxregs);
1333   resolve (td_ta_map_id2thr);
1334   resolve (td_ta_map_lwp2thr);
1335   resolve (td_thr_getgregs);
1336   resolve (td_thr_setgregs);
1337
1338   add_target (&sol_thread_ops);
1339
1340   add_cmd ("sol-threads", class_maintenance, info_solthreads,
1341            _("Show info on Solaris user threads."), &maintenanceinfolist);
1342
1343   /* Hook into new_objfile notification.  */
1344   observer_attach_new_objfile (sol_thread_new_objfile);
1345   return;
1346
1347  die:
1348   fprintf_unfiltered (gdb_stderr, "\
1349 [GDB will not be able to debug user-mode threads: %s]\n", dlerror ());
1350
1351   if (dlhandle)
1352     dlclose (dlhandle);
1353
1354   return;
1355 }