main: Don't add int to string
[external/binutils.git] / gdb / inferior.c
1 /* Multi-process control for GDB, the GNU debugger.
2
3    Copyright (C) 2008-2017 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 #include "defs.h"
21 #include "exec.h"
22 #include "inferior.h"
23 #include "target.h"
24 #include "command.h"
25 #include "completer.h"
26 #include "gdbcmd.h"
27 #include "gdbthread.h"
28 #include "ui-out.h"
29 #include "observer.h"
30 #include "gdbcore.h"
31 #include "symfile.h"
32 #include "environ.h"
33 #include "cli/cli-utils.h"
34 #include "continuations.h"
35 #include "arch-utils.h"
36 #include "target-descriptions.h"
37 #include "readline/tilde.h"
38 #include "progspace-and-thread.h"
39
40 void _initialize_inferiors (void);
41
42 /* Keep a registry of per-inferior data-pointers required by other GDB
43    modules.  */
44
45 DEFINE_REGISTRY (inferior, REGISTRY_ACCESS_FIELD)
46
47 struct inferior *inferior_list = NULL;
48 static int highest_inferior_num;
49
50 /* Print notices on inferior events (attach, detach, etc.), set with
51    `set print inferior-events'.  */
52 static int print_inferior_events = 0;
53
54 /* The Current Inferior.  This is a strong reference.  I.e., whenever
55    an inferior is the current inferior, its refcount is
56    incremented.  */
57 static struct inferior *current_inferior_ = NULL;
58
59 struct inferior*
60 current_inferior (void)
61 {
62   return current_inferior_;
63 }
64
65 void
66 set_current_inferior (struct inferior *inf)
67 {
68   /* There's always an inferior.  */
69   gdb_assert (inf != NULL);
70
71   inf->incref ();
72   current_inferior_->decref ();
73   current_inferior_ = inf;
74 }
75
76 inferior::~inferior ()
77 {
78   inferior *inf = this;
79
80   discard_all_inferior_continuations (inf);
81   inferior_free_data (inf);
82   xfree (inf->args);
83   xfree (inf->terminal);
84   target_desc_info_free (inf->tdesc_info);
85   xfree (inf->priv);
86 }
87
88 inferior::inferior (int pid_)
89   : num (++highest_inferior_num),
90     pid (pid_),
91     environment (gdb_environ::from_host_environ ()),
92     registry_data ()
93 {
94   inferior_alloc_data (this);
95 }
96
97 struct inferior *
98 add_inferior_silent (int pid)
99 {
100   inferior *inf = new inferior (pid);
101
102   if (inferior_list == NULL)
103     inferior_list = inf;
104   else
105     {
106       inferior *last;
107
108       for (last = inferior_list; last->next != NULL; last = last->next)
109         ;
110       last->next = inf;
111     }
112
113   observer_notify_inferior_added (inf);
114
115   if (pid != 0)
116     inferior_appeared (inf, pid);
117
118   return inf;
119 }
120
121 struct inferior *
122 add_inferior (int pid)
123 {
124   struct inferior *inf = add_inferior_silent (pid);
125
126   if (print_inferior_events)
127     printf_unfiltered (_("[New inferior %d]\n"), pid);
128
129   return inf;
130 }
131
132 struct delete_thread_of_inferior_arg
133 {
134   int pid;
135   int silent;
136 };
137
138 static int
139 delete_thread_of_inferior (struct thread_info *tp, void *data)
140 {
141   struct delete_thread_of_inferior_arg *arg
142     = (struct delete_thread_of_inferior_arg *) data;
143
144   if (ptid_get_pid (tp->ptid) == arg->pid)
145     {
146       if (arg->silent)
147         delete_thread_silent (tp->ptid);
148       else
149         delete_thread (tp->ptid);
150     }
151
152   return 0;
153 }
154
155 void
156 delete_inferior (struct inferior *todel)
157 {
158   struct inferior *inf, *infprev;
159   struct delete_thread_of_inferior_arg arg;
160
161   infprev = NULL;
162
163   for (inf = inferior_list; inf; infprev = inf, inf = inf->next)
164     if (inf == todel)
165       break;
166
167   if (!inf)
168     return;
169
170   arg.pid = inf->pid;
171   arg.silent = 1;
172
173   iterate_over_threads (delete_thread_of_inferior, &arg);
174
175   if (infprev)
176     infprev->next = inf->next;
177   else
178     inferior_list = inf->next;
179
180   observer_notify_inferior_removed (inf);
181
182   /* If this program space is rendered useless, remove it. */
183   if (program_space_empty_p (inf->pspace))
184     delete_program_space (inf->pspace);
185
186   delete inf;
187 }
188
189 /* If SILENT then be quiet -- don't announce a inferior exit, or the
190    exit of its threads.  */
191
192 static void
193 exit_inferior_1 (struct inferior *inftoex, int silent)
194 {
195   struct inferior *inf;
196   struct delete_thread_of_inferior_arg arg;
197
198   for (inf = inferior_list; inf; inf = inf->next)
199     if (inf == inftoex)
200       break;
201
202   if (!inf)
203     return;
204
205   arg.pid = inf->pid;
206   arg.silent = silent;
207
208   iterate_over_threads (delete_thread_of_inferior, &arg);
209
210   observer_notify_inferior_exit (inf);
211
212   inf->pid = 0;
213   inf->fake_pid_p = 0;
214   xfree (inf->priv);
215   inf->priv = NULL;
216
217   if (inf->vfork_parent != NULL)
218     {
219       inf->vfork_parent->vfork_child = NULL;
220       inf->vfork_parent = NULL;
221     }
222   if (inf->vfork_child != NULL)
223     {
224       inf->vfork_child->vfork_parent = NULL;
225       inf->vfork_child = NULL;
226     }
227
228   inf->pending_detach = 0;
229 }
230
231 void
232 exit_inferior (int pid)
233 {
234   struct inferior *inf = find_inferior_pid (pid);
235
236   exit_inferior_1 (inf, 0);
237
238   if (print_inferior_events)
239     printf_unfiltered (_("[Inferior %d exited]\n"), pid);
240 }
241
242 void
243 exit_inferior_silent (int pid)
244 {
245   struct inferior *inf = find_inferior_pid (pid);
246
247   exit_inferior_1 (inf, 1);
248 }
249
250 void
251 exit_inferior_num_silent (int num)
252 {
253   struct inferior *inf = find_inferior_id (num);
254
255   exit_inferior_1 (inf, 1);
256 }
257
258 void
259 detach_inferior (int pid)
260 {
261   struct inferior *inf = find_inferior_pid (pid);
262
263   exit_inferior_1 (inf, 0);
264
265   if (print_inferior_events)
266     printf_unfiltered (_("[Inferior %d detached]\n"), pid);
267 }
268
269 void
270 inferior_appeared (struct inferior *inf, int pid)
271 {
272   inf->pid = pid;
273   inf->has_exit_code = 0;
274   inf->exit_code = 0;
275
276   observer_notify_inferior_appeared (inf);
277 }
278
279 void
280 discard_all_inferiors (void)
281 {
282   struct inferior *inf;
283
284   for (inf = inferior_list; inf; inf = inf->next)
285     {
286       if (inf->pid != 0)
287         exit_inferior_silent (inf->pid);
288     }
289 }
290
291 struct inferior *
292 find_inferior_id (int num)
293 {
294   struct inferior *inf;
295
296   for (inf = inferior_list; inf; inf = inf->next)
297     if (inf->num == num)
298       return inf;
299
300   return NULL;
301 }
302
303 struct inferior *
304 find_inferior_pid (int pid)
305 {
306   struct inferior *inf;
307
308   /* Looking for inferior pid == 0 is always wrong, and indicative of
309      a bug somewhere else.  There may be more than one with pid == 0,
310      for instance.  */
311   gdb_assert (pid != 0);
312
313   for (inf = inferior_list; inf; inf = inf->next)
314     if (inf->pid == pid)
315       return inf;
316
317   return NULL;
318 }
319
320 /* See inferior.h */
321
322 struct inferior *
323 find_inferior_ptid (ptid_t ptid)
324 {
325   return find_inferior_pid (ptid_get_pid (ptid));
326 }
327
328 /* See inferior.h.  */
329
330 struct inferior *
331 find_inferior_for_program_space (struct program_space *pspace)
332 {
333   struct inferior *inf = current_inferior ();
334
335   if (inf->pspace == pspace)
336     return inf;
337
338   for (inf = inferior_list; inf != NULL; inf = inf->next)
339     {
340       if (inf->pspace == pspace)
341         return inf;
342     }
343
344   return NULL;
345 }
346
347 struct inferior *
348 iterate_over_inferiors (int (*callback) (struct inferior *, void *),
349                         void *data)
350 {
351   struct inferior *inf, *infnext;
352
353   for (inf = inferior_list; inf; inf = infnext)
354     {
355       infnext = inf->next;
356       if ((*callback) (inf, data))
357         return inf;
358     }
359
360   return NULL;
361 }
362
363 int
364 valid_gdb_inferior_id (int num)
365 {
366   struct inferior *inf;
367
368   for (inf = inferior_list; inf; inf = inf->next)
369     if (inf->num == num)
370       return 1;
371
372   return 0;
373 }
374
375 int
376 pid_to_gdb_inferior_id (int pid)
377 {
378   struct inferior *inf;
379
380   for (inf = inferior_list; inf; inf = inf->next)
381     if (inf->pid == pid)
382       return inf->num;
383
384   return 0;
385 }
386
387 int
388 gdb_inferior_id_to_pid (int num)
389 {
390   struct inferior *inferior = find_inferior_id (num);
391   if (inferior)
392     return inferior->pid;
393   else
394     return -1;
395 }
396
397 int
398 in_inferior_list (int pid)
399 {
400   struct inferior *inf;
401
402   for (inf = inferior_list; inf; inf = inf->next)
403     if (inf->pid == pid)
404       return 1;
405
406   return 0;
407 }
408
409 int
410 have_inferiors (void)
411 {
412   struct inferior *inf;
413
414   for (inf = inferior_list; inf; inf = inf->next)
415     if (inf->pid != 0)
416       return 1;
417
418   return 0;
419 }
420
421 /* Return the number of live inferiors.  We account for the case
422    where an inferior might have a non-zero pid but no threads, as
423    in the middle of a 'mourn' operation.  */
424
425 int
426 number_of_live_inferiors (void)
427 {
428   struct inferior *inf;
429   int num_inf = 0;
430
431   for (inf = inferior_list; inf; inf = inf->next)
432     if (inf->pid != 0)
433       {
434         struct thread_info *tp;
435
436         ALL_NON_EXITED_THREADS (tp)
437          if (tp && ptid_get_pid (tp->ptid) == inf->pid)
438            if (target_has_execution_1 (tp->ptid))
439              {
440                /* Found a live thread in this inferior, go to the next
441                   inferior.  */
442                ++num_inf;
443                break;
444              }
445       }
446
447   return num_inf;
448 }
449
450 /* Return true if there is at least one live inferior.  */
451
452 int
453 have_live_inferiors (void)
454 {
455   return number_of_live_inferiors () > 0;
456 }
457
458 /* Prune away any unused inferiors, and then prune away no longer used
459    program spaces.  */
460
461 void
462 prune_inferiors (void)
463 {
464   struct inferior *ss, **ss_link;
465
466   ss = inferior_list;
467   ss_link = &inferior_list;
468   while (ss)
469     {
470       if (!ss->deletable ()
471           || !ss->removable
472           || ss->pid != 0)
473         {
474           ss_link = &ss->next;
475           ss = *ss_link;
476           continue;
477         }
478
479       *ss_link = ss->next;
480       delete_inferior (ss);
481       ss = *ss_link;
482     }
483 }
484
485 /* Simply returns the count of inferiors.  */
486
487 int
488 number_of_inferiors (void)
489 {
490   struct inferior *inf;
491   int count = 0;
492
493   for (inf = inferior_list; inf != NULL; inf = inf->next)
494     count++;
495
496   return count;
497 }
498
499 /* Converts an inferior process id to a string.  Like
500    target_pid_to_str, but special cases the null process.  */
501
502 static const char *
503 inferior_pid_to_str (int pid)
504 {
505   if (pid != 0)
506     return target_pid_to_str (pid_to_ptid (pid));
507   else
508     return _("<null>");
509 }
510
511 /* See inferior.h.  */
512
513 void
514 print_selected_inferior (struct ui_out *uiout)
515 {
516   struct inferior *inf = current_inferior ();
517   const char *filename = inf->pspace->pspace_exec_filename;
518
519   if (filename == NULL)
520     filename = _("<noexec>");
521
522   uiout->message (_("[Switching to inferior %d [%s] (%s)]\n"),
523                   inf->num, inferior_pid_to_str (inf->pid), filename);
524 }
525
526 /* Prints the list of inferiors and their details on UIOUT.  This is a
527    version of 'info_inferior_command' suitable for use from MI.
528
529    If REQUESTED_INFERIORS is not NULL, it's a list of GDB ids of the
530    inferiors that should be printed.  Otherwise, all inferiors are
531    printed.  */
532
533 static void
534 print_inferior (struct ui_out *uiout, char *requested_inferiors)
535 {
536   struct inferior *inf;
537   struct cleanup *old_chain;
538   int inf_count = 0;
539
540   /* Compute number of inferiors we will print.  */
541   for (inf = inferior_list; inf; inf = inf->next)
542     {
543       if (!number_is_in_list (requested_inferiors, inf->num))
544         continue;
545
546       ++inf_count;
547     }
548
549   if (inf_count == 0)
550     {
551       uiout->message ("No inferiors.\n");
552       return;
553     }
554
555   old_chain = make_cleanup_ui_out_table_begin_end (uiout, 4, inf_count,
556                                                    "inferiors");
557   uiout->table_header (1, ui_left, "current", "");
558   uiout->table_header (4, ui_left, "number", "Num");
559   uiout->table_header (17, ui_left, "target-id", "Description");
560   uiout->table_header (17, ui_left, "exec", "Executable");
561
562   uiout->table_body ();
563   for (inf = inferior_list; inf; inf = inf->next)
564     {
565       if (!number_is_in_list (requested_inferiors, inf->num))
566         continue;
567
568       ui_out_emit_tuple tuple_emitter (uiout, NULL);
569
570       if (inf == current_inferior ())
571         uiout->field_string ("current", "*");
572       else
573         uiout->field_skip ("current");
574
575       uiout->field_int ("number", inf->num);
576
577       uiout->field_string ("target-id", inferior_pid_to_str (inf->pid));
578
579       if (inf->pspace->pspace_exec_filename != NULL)
580         uiout->field_string ("exec", inf->pspace->pspace_exec_filename);
581       else
582         uiout->field_skip ("exec");
583
584       /* Print extra info that isn't really fit to always present in
585          tabular form.  Currently we print the vfork parent/child
586          relationships, if any.  */
587       if (inf->vfork_parent)
588         {
589           uiout->text (_("\n\tis vfork child of inferior "));
590           uiout->field_int ("vfork-parent", inf->vfork_parent->num);
591         }
592       if (inf->vfork_child)
593         {
594           uiout->text (_("\n\tis vfork parent of inferior "));
595           uiout->field_int ("vfork-child", inf->vfork_child->num);
596         }
597
598       uiout->text ("\n");
599     }
600
601   do_cleanups (old_chain);
602 }
603
604 static void
605 detach_inferior_command (char *args, int from_tty)
606 {
607   struct thread_info *tp;
608
609   if (!args || !*args)
610     error (_("Requires argument (inferior id(s) to detach)"));
611
612   number_or_range_parser parser (args);
613   while (!parser.finished ())
614     {
615       int num = parser.get_number ();
616
617       if (!valid_gdb_inferior_id (num))
618         {
619           warning (_("Inferior ID %d not known."), num);
620           continue;
621         }
622
623       int pid = gdb_inferior_id_to_pid (num);
624       if (pid == 0)
625         {
626           warning (_("Inferior ID %d is not running."), num);
627           continue;
628         }
629
630       tp = any_thread_of_process (pid);
631       if (!tp)
632         {
633           warning (_("Inferior ID %d has no threads."), num);
634           continue;
635         }
636
637       switch_to_thread (tp->ptid);
638
639       detach_command (NULL, from_tty);
640     }
641 }
642
643 static void
644 kill_inferior_command (char *args, int from_tty)
645 {
646   struct thread_info *tp;
647
648   if (!args || !*args)
649     error (_("Requires argument (inferior id(s) to kill)"));
650
651   number_or_range_parser parser (args);
652   while (!parser.finished ())
653     {
654       int num = parser.get_number ();
655
656       if (!valid_gdb_inferior_id (num))
657         {
658           warning (_("Inferior ID %d not known."), num);
659           continue;
660         }
661
662       int pid = gdb_inferior_id_to_pid (num);
663       if (pid == 0)
664         {
665           warning (_("Inferior ID %d is not running."), num);
666           continue;
667         }
668
669       tp = any_thread_of_process (pid);
670       if (!tp)
671         {
672           warning (_("Inferior ID %d has no threads."), num);
673           continue;
674         }
675
676       switch_to_thread (tp->ptid);
677
678       target_kill ();
679     }
680
681   bfd_cache_close_all ();
682 }
683
684 static void
685 inferior_command (char *args, int from_tty)
686 {
687   struct inferior *inf;
688   int num;
689
690   num = parse_and_eval_long (args);
691
692   inf = find_inferior_id (num);
693   if (inf == NULL)
694     error (_("Inferior ID %d not known."), num);
695
696   if (inf->pid != 0)
697     {
698       if (inf->pid != ptid_get_pid (inferior_ptid))
699         {
700           struct thread_info *tp;
701
702           tp = any_thread_of_process (inf->pid);
703           if (!tp)
704             error (_("Inferior has no threads."));
705
706           switch_to_thread (tp->ptid);
707         }
708
709       observer_notify_user_selected_context_changed
710         (USER_SELECTED_INFERIOR
711          | USER_SELECTED_THREAD
712          | USER_SELECTED_FRAME);
713     }
714   else
715     {
716       set_current_inferior (inf);
717       switch_to_thread (null_ptid);
718       set_current_program_space (inf->pspace);
719
720       observer_notify_user_selected_context_changed (USER_SELECTED_INFERIOR);
721     }
722 }
723
724 /* Print information about currently known inferiors.  */
725
726 static void
727 info_inferiors_command (char *args, int from_tty)
728 {
729   print_inferior (current_uiout, args);
730 }
731
732 /* remove-inferior ID */
733
734 static void
735 remove_inferior_command (char *args, int from_tty)
736 {
737   if (args == NULL || *args == '\0')
738     error (_("Requires an argument (inferior id(s) to remove)"));
739
740   number_or_range_parser parser (args);
741   while (!parser.finished ())
742     {
743       int num = parser.get_number ();
744       struct inferior *inf = find_inferior_id (num);
745
746       if (inf == NULL)
747         {
748           warning (_("Inferior ID %d not known."), num);
749           continue;
750         }
751
752       if (!inf->deletable ())
753         {
754           warning (_("Can not remove current inferior %d."), num);
755           continue;
756         }
757     
758       if (inf->pid != 0)
759         {
760           warning (_("Can not remove active inferior %d."), num);
761           continue;
762         }
763
764       delete_inferior (inf);
765     }
766 }
767
768 struct inferior *
769 add_inferior_with_spaces (void)
770 {
771   struct address_space *aspace;
772   struct program_space *pspace;
773   struct inferior *inf;
774   struct gdbarch_info info;
775
776   /* If all inferiors share an address space on this system, this
777      doesn't really return a new address space; otherwise, it
778      really does.  */
779   aspace = maybe_new_address_space ();
780   pspace = add_program_space (aspace);
781   inf = add_inferior (0);
782   inf->pspace = pspace;
783   inf->aspace = pspace->aspace;
784
785   /* Setup the inferior's initial arch, based on information obtained
786      from the global "set ..." options.  */
787   gdbarch_info_init (&info);
788   inf->gdbarch = gdbarch_find_by_info (info);
789   /* The "set ..." options reject invalid settings, so we should
790      always have a valid arch by now.  */
791   gdb_assert (inf->gdbarch != NULL);
792
793   return inf;
794 }
795
796 /* add-inferior [-copies N] [-exec FILENAME]  */
797
798 static void
799 add_inferior_command (char *args, int from_tty)
800 {
801   int i, copies = 1;
802   char *exec = NULL;
803   char **argv;
804   symfile_add_flags add_flags = 0;
805   struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
806
807   if (from_tty)
808     add_flags |= SYMFILE_VERBOSE;
809
810   if (args)
811     {
812       argv = gdb_buildargv (args);
813       make_cleanup_freeargv (argv);
814
815       for (; *argv != NULL; argv++)
816         {
817           if (**argv == '-')
818             {
819               if (strcmp (*argv, "-copies") == 0)
820                 {
821                   ++argv;
822                   if (!*argv)
823                     error (_("No argument to -copies"));
824                   copies = parse_and_eval_long (*argv);
825                 }
826               else if (strcmp (*argv, "-exec") == 0)
827                 {
828                   ++argv;
829                   if (!*argv)
830                     error (_("No argument to -exec"));
831                   exec = tilde_expand (*argv);
832                   make_cleanup (xfree, exec);
833                 }
834             }
835           else
836             error (_("Invalid argument"));
837         }
838     }
839
840   scoped_restore_current_pspace_and_thread restore_pspace_thread;
841
842   for (i = 0; i < copies; ++i)
843     {
844       struct inferior *inf = add_inferior_with_spaces ();
845
846       printf_filtered (_("Added inferior %d\n"), inf->num);
847
848       if (exec != NULL)
849         {
850           /* Switch over temporarily, while reading executable and
851              symbols.q.  */
852           set_current_program_space (inf->pspace);
853           set_current_inferior (inf);
854           switch_to_thread (null_ptid);
855
856           exec_file_attach (exec, from_tty);
857           symbol_file_add_main (exec, add_flags);
858         }
859     }
860
861   do_cleanups (old_chain);
862 }
863
864 /* clone-inferior [-copies N] [ID] */
865
866 static void
867 clone_inferior_command (char *args, int from_tty)
868 {
869   int i, copies = 1;
870   char **argv;
871   struct inferior *orginf = NULL;
872   struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
873
874   if (args)
875     {
876       argv = gdb_buildargv (args);
877       make_cleanup_freeargv (argv);
878
879       for (; *argv != NULL; argv++)
880         {
881           if (**argv == '-')
882             {
883               if (strcmp (*argv, "-copies") == 0)
884                 {
885                   ++argv;
886                   if (!*argv)
887                     error (_("No argument to -copies"));
888                   copies = parse_and_eval_long (*argv);
889
890                   if (copies < 0)
891                     error (_("Invalid copies number"));
892                 }
893             }
894           else
895             {
896               if (orginf == NULL)
897                 {
898                   int num;
899
900                   /* The first non-option (-) argument specified the
901                      program space ID.  */
902                   num = parse_and_eval_long (*argv);
903                   orginf = find_inferior_id (num);
904
905                   if (orginf == NULL)
906                     error (_("Inferior ID %d not known."), num);
907                   continue;
908                 }
909               else
910                 error (_("Invalid argument"));
911             }
912         }
913     }
914
915   /* If no inferior id was specified, then the user wants to clone the
916      current inferior.  */
917   if (orginf == NULL)
918     orginf = current_inferior ();
919
920   scoped_restore_current_pspace_and_thread restore_pspace_thread;
921
922   for (i = 0; i < copies; ++i)
923     {
924       struct address_space *aspace;
925       struct program_space *pspace;
926       struct inferior *inf;
927
928       /* If all inferiors share an address space on this system, this
929          doesn't really return a new address space; otherwise, it
930          really does.  */
931       aspace = maybe_new_address_space ();
932       pspace = add_program_space (aspace);
933       inf = add_inferior (0);
934       inf->pspace = pspace;
935       inf->aspace = pspace->aspace;
936       inf->gdbarch = orginf->gdbarch;
937
938       /* If the original inferior had a user specified target
939          description, make the clone use it too.  */
940       if (target_desc_info_from_user_p (inf->tdesc_info))
941         copy_inferior_target_desc_info (inf, orginf);
942
943       printf_filtered (_("Added inferior %d.\n"), inf->num);
944
945       set_current_inferior (inf);
946       switch_to_thread (null_ptid);
947       clone_program_space (pspace, orginf->pspace);
948     }
949
950   do_cleanups (old_chain);
951 }
952
953 /* Print notices when new inferiors are created and die.  */
954 static void
955 show_print_inferior_events (struct ui_file *file, int from_tty,
956                            struct cmd_list_element *c, const char *value)
957 {
958   fprintf_filtered (file, _("Printing of inferior events is %s.\n"), value);
959 }
960
961 /* Return a new value for the selected inferior's id.  */
962
963 static struct value *
964 inferior_id_make_value (struct gdbarch *gdbarch, struct internalvar *var,
965                         void *ignore)
966 {
967   struct inferior *inf = current_inferior ();
968
969   return value_from_longest (builtin_type (gdbarch)->builtin_int, inf->num);
970 }
971
972 /* Implementation of `$_inferior' variable.  */
973
974 static const struct internalvar_funcs inferior_funcs =
975 {
976   inferior_id_make_value,
977   NULL,
978   NULL
979 };
980
981 \f
982
983 void
984 initialize_inferiors (void)
985 {
986   struct cmd_list_element *c = NULL;
987
988   /* There's always one inferior.  Note that this function isn't an
989      automatic _initialize_foo function, since other _initialize_foo
990      routines may need to install their per-inferior data keys.  We
991      can only allocate an inferior when all those modules have done
992      that.  Do this after initialize_progspace, due to the
993      current_program_space reference.  */
994   current_inferior_ = add_inferior (0);
995   current_inferior_->incref ();
996   current_inferior_->pspace = current_program_space;
997   current_inferior_->aspace = current_program_space->aspace;
998   /* The architecture will be initialized shortly, by
999      initialize_current_architecture.  */
1000
1001   add_info ("inferiors", info_inferiors_command, 
1002             _("IDs of specified inferiors (all inferiors if no argument)."));
1003
1004   c = add_com ("add-inferior", no_class, add_inferior_command, _("\
1005 Add a new inferior.\n\
1006 Usage: add-inferior [-copies <N>] [-exec <FILENAME>]\n\
1007 N is the optional number of inferiors to add, default is 1.\n\
1008 FILENAME is the file name of the executable to use\n\
1009 as main program."));
1010   set_cmd_completer (c, filename_completer);
1011
1012   add_com ("remove-inferiors", no_class, remove_inferior_command, _("\
1013 Remove inferior ID (or list of IDs).\n\
1014 Usage: remove-inferiors ID..."));
1015
1016   add_com ("clone-inferior", no_class, clone_inferior_command, _("\
1017 Clone inferior ID.\n\
1018 Usage: clone-inferior [-copies <N>] [ID]\n\
1019 Add N copies of inferior ID.  The new inferior has the same\n\
1020 executable loaded as the copied inferior.  If -copies is not specified,\n\
1021 adds 1 copy.  If ID is not specified, it is the current inferior\n\
1022 that is cloned."));
1023
1024   add_cmd ("inferiors", class_run, detach_inferior_command, _("\
1025 Detach from inferior ID (or list of IDS)."),
1026            &detachlist);
1027
1028   add_cmd ("inferiors", class_run, kill_inferior_command, _("\
1029 Kill inferior ID (or list of IDs)."),
1030            &killlist);
1031
1032   add_cmd ("inferior", class_run, inferior_command, _("\
1033 Use this command to switch between inferiors.\n\
1034 The new inferior ID must be currently known."),
1035            &cmdlist);
1036
1037   add_setshow_boolean_cmd ("inferior-events", no_class,
1038          &print_inferior_events, _("\
1039 Set printing of inferior events (e.g., inferior start and exit)."), _("\
1040 Show printing of inferior events (e.g., inferior start and exit)."), NULL,
1041          NULL,
1042          show_print_inferior_events,
1043          &setprintlist, &showprintlist);
1044
1045   create_internalvar_type_lazy ("_inferior", &inferior_funcs, NULL);
1046 }