* target.c: Include "exec.h".
[binutils-gdb.git] / gdb / corelow.c
1 /* Core dump and executable file functions below target vector, for GDB.
2
3 Copyright (C) 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
4 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009
5 Free Software Foundation, Inc.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 #include "defs.h"
23 #include "arch-utils.h"
24 #include "gdb_string.h"
25 #include <errno.h>
26 #include <signal.h>
27 #include <fcntl.h>
28 #ifdef HAVE_SYS_FILE_H
29 #include <sys/file.h> /* needed for F_OK and friends */
30 #endif
31 #include "frame.h" /* required by inferior.h */
32 #include "inferior.h"
33 #include "symtab.h"
34 #include "command.h"
35 #include "bfd.h"
36 #include "target.h"
37 #include "gdbcore.h"
38 #include "gdbthread.h"
39 #include "regcache.h"
40 #include "regset.h"
41 #include "symfile.h"
42 #include "exec.h"
43 #include "readline/readline.h"
44 #include "gdb_assert.h"
45 #include "exceptions.h"
46 #include "solib.h"
47 #include "filenames.h"
48
49
50 #ifndef O_LARGEFILE
51 #define O_LARGEFILE 0
52 #endif
53
54 /* List of all available core_fns. On gdb startup, each core file
55 register reader calls deprecated_add_core_fns() to register
56 information on each core format it is prepared to read. */
57
58 static struct core_fns *core_file_fns = NULL;
59
60 /* The core_fns for a core file handler that is prepared to read the core
61 file currently open on core_bfd. */
62
63 static struct core_fns *core_vec = NULL;
64
65 /* FIXME: kettenis/20031023: Eventually this variable should
66 disappear. */
67
68 struct gdbarch *core_gdbarch = NULL;
69
70 /* Per-core data. Currently, only the section table. Note that these
71 target sections are *not* mapped in the current address spaces' set
72 of target sections --- those should come only from pure executable
73 or shared library bfds. The core bfd sections are an
74 implementation detail of the core target, just like ptrace is for
75 unix child targets. */
76 static struct target_section_table *core_data;
77
78 static void core_files_info (struct target_ops *);
79
80 static struct core_fns *sniff_core_bfd (bfd *);
81
82 static int gdb_check_format (bfd *);
83
84 static void core_open (char *, int);
85
86 static void core_detach (struct target_ops *ops, char *, int);
87
88 static void core_close (int);
89
90 static void core_close_cleanup (void *ignore);
91
92 static void add_to_thread_list (bfd *, asection *, void *);
93
94 static void init_core_ops (void);
95
96 void _initialize_corelow (void);
97
98 struct target_ops core_ops;
99
100 /* An arbitrary identifier for the core inferior. */
101 #define CORELOW_PID 1
102
103 /* Link a new core_fns into the global core_file_fns list. Called on gdb
104 startup by the _initialize routine in each core file register reader, to
105 register information about each format the the reader is prepared to
106 handle. */
107
108 void
109 deprecated_add_core_fns (struct core_fns *cf)
110 {
111 cf->next = core_file_fns;
112 core_file_fns = cf;
113 }
114
115 /* The default function that core file handlers can use to examine a
116 core file BFD and decide whether or not to accept the job of
117 reading the core file. */
118
119 int
120 default_core_sniffer (struct core_fns *our_fns, bfd *abfd)
121 {
122 int result;
123
124 result = (bfd_get_flavour (abfd) == our_fns -> core_flavour);
125 return (result);
126 }
127
128 /* Walk through the list of core functions to find a set that can
129 handle the core file open on ABFD. Default to the first one in the
130 list if nothing matches. Returns pointer to set that is
131 selected. */
132
133 static struct core_fns *
134 sniff_core_bfd (bfd *abfd)
135 {
136 struct core_fns *cf;
137 struct core_fns *yummy = NULL;
138 int matches = 0;;
139
140 /* Don't sniff if we have support for register sets in CORE_GDBARCH. */
141 if (core_gdbarch && gdbarch_regset_from_core_section_p (core_gdbarch))
142 return NULL;
143
144 for (cf = core_file_fns; cf != NULL; cf = cf->next)
145 {
146 if (cf->core_sniffer (cf, abfd))
147 {
148 yummy = cf;
149 matches++;
150 }
151 }
152 if (matches > 1)
153 {
154 warning (_("\"%s\": ambiguous core format, %d handlers match"),
155 bfd_get_filename (abfd), matches);
156 }
157 else if (matches == 0)
158 {
159 warning (_("\"%s\": no core file handler recognizes format, using default"),
160 bfd_get_filename (abfd));
161 }
162 if (yummy == NULL)
163 {
164 yummy = core_file_fns;
165 }
166 return (yummy);
167 }
168
169 /* The default is to reject every core file format we see. Either
170 BFD has to recognize it, or we have to provide a function in the
171 core file handler that recognizes it. */
172
173 int
174 default_check_format (bfd *abfd)
175 {
176 return (0);
177 }
178
179 /* Attempt to recognize core file formats that BFD rejects. */
180
181 static int
182 gdb_check_format (bfd *abfd)
183 {
184 struct core_fns *cf;
185
186 for (cf = core_file_fns; cf != NULL; cf = cf->next)
187 {
188 if (cf->check_format (abfd))
189 {
190 return (1);
191 }
192 }
193 return (0);
194 }
195
196 /* Discard all vestiges of any previous core file and mark data and stack
197 spaces as empty. */
198
199 static void
200 core_close (int quitting)
201 {
202 char *name;
203
204 if (core_bfd)
205 {
206 int pid = ptid_get_pid (inferior_ptid);
207 inferior_ptid = null_ptid; /* Avoid confusion from thread stuff */
208 delete_inferior_silent (pid);
209
210 /* Clear out solib state while the bfd is still open. See
211 comments in clear_solib in solib.c. */
212 clear_solib ();
213
214 xfree (core_data->sections);
215 xfree (core_data);
216 core_data = NULL;
217
218 name = bfd_get_filename (core_bfd);
219 if (!bfd_close (core_bfd))
220 warning (_("cannot close \"%s\": %s"),
221 name, bfd_errmsg (bfd_get_error ()));
222 xfree (name);
223 core_bfd = NULL;
224 }
225 core_vec = NULL;
226 core_gdbarch = NULL;
227 }
228
229 static void
230 core_close_cleanup (void *ignore)
231 {
232 core_close (0/*ignored*/);
233 }
234
235 /* Look for sections whose names start with `.reg/' so that we can extract the
236 list of threads in a core file. */
237
238 static void
239 add_to_thread_list (bfd *abfd, asection *asect, void *reg_sect_arg)
240 {
241 ptid_t ptid;
242 int thread_id;
243 asection *reg_sect = (asection *) reg_sect_arg;
244
245 if (strncmp (bfd_section_name (abfd, asect), ".reg/", 5) != 0)
246 return;
247
248 thread_id = atoi (bfd_section_name (abfd, asect) + 5);
249
250 if (core_gdbarch
251 && gdbarch_core_reg_section_encodes_pid (core_gdbarch))
252 {
253 uint32_t merged_pid = thread_id;
254 ptid = ptid_build (merged_pid & 0xffff,
255 merged_pid >> 16, 0);
256 }
257 else
258 ptid = ptid_build (ptid_get_pid (inferior_ptid), thread_id, 0);
259
260 if (ptid_get_lwp (inferior_ptid) == 0)
261 /* The main thread has already been added before getting here, and
262 this is the first time we hear about a thread id. Assume this
263 is the main thread. */
264 thread_change_ptid (inferior_ptid, ptid);
265 else
266 /* Nope, really a new thread. */
267 add_thread (ptid);
268
269 /* Warning, Will Robinson, looking at BFD private data! */
270
271 if (reg_sect != NULL
272 && asect->filepos == reg_sect->filepos) /* Did we find .reg? */
273 inferior_ptid = ptid; /* Yes, make it current */
274 }
275
276 /* This routine opens and sets up the core file bfd. */
277
278 static void
279 core_open (char *filename, int from_tty)
280 {
281 const char *p;
282 int siggy;
283 struct cleanup *old_chain;
284 char *temp;
285 bfd *temp_bfd;
286 int scratch_chan;
287 int flags;
288 int corelow_pid = CORELOW_PID;
289
290 target_preopen (from_tty);
291 if (!filename)
292 {
293 if (core_bfd)
294 error (_("No core file specified. (Use `detach' to stop debugging a core file.)"));
295 else
296 error (_("No core file specified."));
297 }
298
299 filename = tilde_expand (filename);
300 if (!IS_ABSOLUTE_PATH(filename))
301 {
302 temp = concat (current_directory, "/", filename, (char *)NULL);
303 xfree (filename);
304 filename = temp;
305 }
306
307 old_chain = make_cleanup (xfree, filename);
308
309 flags = O_BINARY | O_LARGEFILE;
310 if (write_files)
311 flags |= O_RDWR;
312 else
313 flags |= O_RDONLY;
314 scratch_chan = open (filename, flags, 0);
315 if (scratch_chan < 0)
316 perror_with_name (filename);
317
318 temp_bfd = bfd_fopen (filename, gnutarget,
319 write_files ? FOPEN_RUB : FOPEN_RB,
320 scratch_chan);
321 if (temp_bfd == NULL)
322 perror_with_name (filename);
323
324 if (!bfd_check_format (temp_bfd, bfd_core) &&
325 !gdb_check_format (temp_bfd))
326 {
327 /* Do it after the err msg */
328 /* FIXME: should be checking for errors from bfd_close (for one thing,
329 on error it does not free all the storage associated with the
330 bfd). */
331 make_cleanup_bfd_close (temp_bfd);
332 error (_("\"%s\" is not a core dump: %s"),
333 filename, bfd_errmsg (bfd_get_error ()));
334 }
335
336 /* Looks semi-reasonable. Toss the old core file and work on the new. */
337
338 discard_cleanups (old_chain); /* Don't free filename any more */
339 unpush_target (&core_ops);
340 core_bfd = temp_bfd;
341 old_chain = make_cleanup (core_close_cleanup, 0 /*ignore*/);
342
343 /* FIXME: kettenis/20031023: This is very dangerous. The
344 CORE_GDBARCH that results from this call may very well be
345 different from CURRENT_GDBARCH. However, its methods may only
346 work if it is selected as the current architecture, because they
347 rely on swapped data (see gdbarch.c). We should get rid of that
348 swapped data. */
349 core_gdbarch = gdbarch_from_bfd (core_bfd);
350
351 /* Find a suitable core file handler to munch on core_bfd */
352 core_vec = sniff_core_bfd (core_bfd);
353
354 validate_files ();
355
356 core_data = XZALLOC (struct target_section_table);
357
358 /* Find the data section */
359 if (build_section_table (core_bfd,
360 &core_data->sections, &core_data->sections_end))
361 error (_("\"%s\": Can't find sections: %s"),
362 bfd_get_filename (core_bfd), bfd_errmsg (bfd_get_error ()));
363
364 /* If we have no exec file, try to set the architecture from the
365 core file. We don't do this unconditionally since an exec file
366 typically contains more information that helps us determine the
367 architecture than a core file. */
368 if (!exec_bfd)
369 set_gdbarch_from_file (core_bfd);
370
371 push_target (&core_ops);
372 discard_cleanups (old_chain);
373
374 add_inferior_silent (corelow_pid);
375
376 /* Do this before acknowledging the inferior, so if
377 post_create_inferior throws (can happen easilly if you're loading
378 a core file with the wrong exec), we aren't left with threads
379 from the previous inferior. */
380 init_thread_list ();
381
382 /* Set INFERIOR_PTID early, so an upper layer can rely on it being
383 set while in the target_find_new_threads call below. */
384 inferior_ptid = pid_to_ptid (corelow_pid);
385
386 /* Assume ST --- Add a main task. We'll later detect when we go
387 from ST to MT. */
388 add_thread_silent (inferior_ptid);
389
390 /* Need to flush the register cache (and the frame cache) from a
391 previous debug session. If inferior_ptid ends up the same as the
392 last debug session --- e.g., b foo; run; gcore core1; step; gcore
393 core2; core core1; core core2 --- then there's potential for
394 get_current_regcache to return the cached regcache of the
395 previous session, and the frame cache being stale. */
396 registers_changed ();
397
398 /* Build up thread list from BFD sections, and possibly set the
399 current thread to the .reg/NN section matching the .reg
400 section. */
401 bfd_map_over_sections (core_bfd, add_to_thread_list,
402 bfd_get_section_by_name (core_bfd, ".reg"));
403
404 post_create_inferior (&core_ops, from_tty);
405
406 /* Now go through the target stack looking for threads since there
407 may be a thread_stratum target loaded on top of target core by
408 now. The layer above should claim threads found in the BFD
409 sections. */
410 target_find_new_threads ();
411
412 p = bfd_core_file_failing_command (core_bfd);
413 if (p)
414 printf_filtered (_("Core was generated by `%s'.\n"), p);
415
416 siggy = bfd_core_file_failing_signal (core_bfd);
417 if (siggy > 0)
418 /* NOTE: target_signal_from_host() converts a target signal value
419 into gdb's internal signal value. Unfortunately gdb's internal
420 value is called ``target_signal'' and this function got the
421 name ..._from_host(). */
422 printf_filtered (_("Program terminated with signal %d, %s.\n"), siggy,
423 target_signal_to_string (
424 gdbarch_target_signal_from_host (core_gdbarch, siggy)));
425
426 /* Fetch all registers from core file. */
427 target_fetch_registers (get_current_regcache (), -1);
428
429 /* Now, set up the frame cache, and print the top of stack. */
430 reinit_frame_cache ();
431 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC);
432 }
433
434 static void
435 core_detach (struct target_ops *ops, char *args, int from_tty)
436 {
437 if (args)
438 error (_("Too many arguments"));
439 unpush_target (ops);
440 reinit_frame_cache ();
441 if (from_tty)
442 printf_filtered (_("No core file now.\n"));
443 }
444
445 #ifdef DEPRECATED_IBM6000_TARGET
446
447 /* Resize the core memory's section table, by NUM_ADDED. Returns a
448 pointer into the first new slot. This will not be necessary when
449 the rs6000 target is converted to use the standard solib
450 framework. */
451
452 struct target_section *
453 deprecated_core_resize_section_table (int num_added)
454 {
455 int old_count;
456
457 old_count = resize_section_table (core_data, num_added);
458 return core_data->sections + old_count;
459 }
460
461 #endif
462
463 /* Try to retrieve registers from a section in core_bfd, and supply
464 them to core_vec->core_read_registers, as the register set numbered
465 WHICH.
466
467 If inferior_ptid's lwp member is zero, do the single-threaded
468 thing: look for a section named NAME. If inferior_ptid's lwp
469 member is non-zero, do the multi-threaded thing: look for a section
470 named "NAME/LWP", where LWP is the shortest ASCII decimal
471 representation of inferior_ptid's lwp member.
472
473 HUMAN_NAME is a human-readable name for the kind of registers the
474 NAME section contains, for use in error messages.
475
476 If REQUIRED is non-zero, print an error if the core file doesn't
477 have a section by the appropriate name. Otherwise, just do nothing. */
478
479 static void
480 get_core_register_section (struct regcache *regcache,
481 char *name,
482 int which,
483 char *human_name,
484 int required)
485 {
486 static char *section_name = NULL;
487 struct bfd_section *section;
488 bfd_size_type size;
489 char *contents;
490
491 xfree (section_name);
492
493 if (core_gdbarch
494 && gdbarch_core_reg_section_encodes_pid (core_gdbarch))
495 {
496 uint32_t merged_pid;
497
498 merged_pid = ptid_get_lwp (inferior_ptid);
499 merged_pid = merged_pid << 16 | ptid_get_pid (inferior_ptid);
500
501 section_name = xstrprintf ("%s/%s", name, plongest (merged_pid));
502 }
503 else if (ptid_get_lwp (inferior_ptid))
504 section_name = xstrprintf ("%s/%ld", name, ptid_get_lwp (inferior_ptid));
505 else
506 section_name = xstrdup (name);
507
508 section = bfd_get_section_by_name (core_bfd, section_name);
509 if (! section)
510 {
511 if (required)
512 warning (_("Couldn't find %s registers in core file."), human_name);
513 return;
514 }
515
516 size = bfd_section_size (core_bfd, section);
517 contents = alloca (size);
518 if (! bfd_get_section_contents (core_bfd, section, contents,
519 (file_ptr) 0, size))
520 {
521 warning (_("Couldn't read %s registers from `%s' section in core file."),
522 human_name, name);
523 return;
524 }
525
526 if (core_gdbarch && gdbarch_regset_from_core_section_p (core_gdbarch))
527 {
528 const struct regset *regset;
529
530 regset = gdbarch_regset_from_core_section (core_gdbarch, name, size);
531 if (regset == NULL)
532 {
533 if (required)
534 warning (_("Couldn't recognize %s registers in core file."),
535 human_name);
536 return;
537 }
538
539 regset->supply_regset (regset, regcache, -1, contents, size);
540 return;
541 }
542
543 gdb_assert (core_vec);
544 core_vec->core_read_registers (regcache, contents, size, which,
545 ((CORE_ADDR)
546 bfd_section_vma (core_bfd, section)));
547 }
548
549
550 /* Get the registers out of a core file. This is the machine-
551 independent part. Fetch_core_registers is the machine-dependent
552 part, typically implemented in the xm-file for each architecture. */
553
554 /* We just get all the registers, so we don't use regno. */
555
556 static void
557 get_core_registers (struct target_ops *ops,
558 struct regcache *regcache, int regno)
559 {
560 int i;
561
562 if (!(core_gdbarch && gdbarch_regset_from_core_section_p (core_gdbarch))
563 && (core_vec == NULL || core_vec->core_read_registers == NULL))
564 {
565 fprintf_filtered (gdb_stderr,
566 "Can't fetch registers from this type of core file\n");
567 return;
568 }
569
570 get_core_register_section (regcache,
571 ".reg", 0, "general-purpose", 1);
572 get_core_register_section (regcache,
573 ".reg2", 2, "floating-point", 0);
574 get_core_register_section (regcache,
575 ".reg-xfp", 3, "extended floating-point", 0);
576 get_core_register_section (regcache,
577 ".reg-ppc-vmx", 3, "ppc Altivec", 0);
578 get_core_register_section (regcache,
579 ".reg-ppc-vsx", 4, "POWER7 VSX", 0);
580
581 /* Supply dummy value for all registers not found in the core. */
582 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
583 if (!regcache_valid_p (regcache, i))
584 regcache_raw_supply (regcache, i, NULL);
585 }
586
587 static void
588 core_files_info (struct target_ops *t)
589 {
590 print_section_info (core_data, core_bfd);
591 }
592 \f
593 static LONGEST
594 core_xfer_partial (struct target_ops *ops, enum target_object object,
595 const char *annex, gdb_byte *readbuf,
596 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
597 {
598 switch (object)
599 {
600 case TARGET_OBJECT_MEMORY:
601 return section_table_xfer_memory_partial (readbuf, writebuf,
602 offset, len,
603 core_data->sections,
604 core_data->sections_end,
605 NULL);
606
607 case TARGET_OBJECT_AUXV:
608 if (readbuf)
609 {
610 /* When the aux vector is stored in core file, BFD
611 represents this with a fake section called ".auxv". */
612
613 struct bfd_section *section;
614 bfd_size_type size;
615 char *contents;
616
617 section = bfd_get_section_by_name (core_bfd, ".auxv");
618 if (section == NULL)
619 return -1;
620
621 size = bfd_section_size (core_bfd, section);
622 if (offset >= size)
623 return 0;
624 size -= offset;
625 if (size > len)
626 size = len;
627 if (size > 0
628 && !bfd_get_section_contents (core_bfd, section, readbuf,
629 (file_ptr) offset, size))
630 {
631 warning (_("Couldn't read NT_AUXV note in core file."));
632 return -1;
633 }
634
635 return size;
636 }
637 return -1;
638
639 case TARGET_OBJECT_WCOOKIE:
640 if (readbuf)
641 {
642 /* When the StackGhost cookie is stored in core file, BFD
643 represents this with a fake section called ".wcookie". */
644
645 struct bfd_section *section;
646 bfd_size_type size;
647 char *contents;
648
649 section = bfd_get_section_by_name (core_bfd, ".wcookie");
650 if (section == NULL)
651 return -1;
652
653 size = bfd_section_size (core_bfd, section);
654 if (offset >= size)
655 return 0;
656 size -= offset;
657 if (size > len)
658 size = len;
659 if (size > 0
660 && !bfd_get_section_contents (core_bfd, section, readbuf,
661 (file_ptr) offset, size))
662 {
663 warning (_("Couldn't read StackGhost cookie in core file."));
664 return -1;
665 }
666
667 return size;
668 }
669 return -1;
670
671 case TARGET_OBJECT_LIBRARIES:
672 if (core_gdbarch
673 && gdbarch_core_xfer_shared_libraries_p (core_gdbarch))
674 {
675 if (writebuf)
676 return -1;
677 return
678 gdbarch_core_xfer_shared_libraries (core_gdbarch,
679 readbuf, offset, len);
680 }
681 /* FALL THROUGH */
682
683 default:
684 if (ops->beneath != NULL)
685 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
686 readbuf, writebuf, offset, len);
687 return -1;
688 }
689 }
690
691 \f
692 /* If mourn is being called in all the right places, this could be say
693 `gdb internal error' (since generic_mourn calls breakpoint_init_inferior). */
694
695 static int
696 ignore (struct bp_target_info *bp_tgt)
697 {
698 return 0;
699 }
700
701
702 /* Okay, let's be honest: threads gleaned from a core file aren't
703 exactly lively, are they? On the other hand, if we don't claim
704 that each & every one is alive, then we don't get any of them
705 to appear in an "info thread" command, which is quite a useful
706 behaviour.
707 */
708 static int
709 core_thread_alive (struct target_ops *ops, ptid_t ptid)
710 {
711 return 1;
712 }
713
714 /* Ask the current architecture what it knows about this core file.
715 That will be used, in turn, to pick a better architecture. This
716 wrapper could be avoided if targets got a chance to specialize
717 core_ops. */
718
719 static const struct target_desc *
720 core_read_description (struct target_ops *target)
721 {
722 if (gdbarch_core_read_description_p (current_gdbarch))
723 return gdbarch_core_read_description (current_gdbarch, target, core_bfd);
724
725 return NULL;
726 }
727
728 static char *
729 core_pid_to_str (struct target_ops *ops, ptid_t ptid)
730 {
731 static char buf[64];
732
733 if (core_gdbarch
734 && gdbarch_core_pid_to_str_p (core_gdbarch))
735 {
736 char *ret = gdbarch_core_pid_to_str (core_gdbarch, ptid);
737 if (ret != NULL)
738 return ret;
739 }
740
741 if (ptid_get_lwp (ptid) == 0)
742 xsnprintf (buf, sizeof buf, "<main task>");
743 else
744 xsnprintf (buf, sizeof buf, "Thread %ld", ptid_get_lwp (ptid));
745
746 return buf;
747 }
748
749 /* Fill in core_ops with its defined operations and properties. */
750
751 static void
752 init_core_ops (void)
753 {
754 core_ops.to_shortname = "core";
755 core_ops.to_longname = "Local core dump file";
756 core_ops.to_doc =
757 "Use a core file as a target. Specify the filename of the core file.";
758 core_ops.to_open = core_open;
759 core_ops.to_close = core_close;
760 core_ops.to_attach = find_default_attach;
761 core_ops.to_detach = core_detach;
762 core_ops.to_fetch_registers = get_core_registers;
763 core_ops.to_xfer_partial = core_xfer_partial;
764 core_ops.to_files_info = core_files_info;
765 core_ops.to_insert_breakpoint = ignore;
766 core_ops.to_remove_breakpoint = ignore;
767 core_ops.to_create_inferior = find_default_create_inferior;
768 core_ops.to_thread_alive = core_thread_alive;
769 core_ops.to_read_description = core_read_description;
770 core_ops.to_pid_to_str = core_pid_to_str;
771 core_ops.to_stratum = core_stratum;
772 core_ops.to_has_memory = 1;
773 core_ops.to_has_stack = 1;
774 core_ops.to_has_registers = 1;
775 core_ops.to_magic = OPS_MAGIC;
776 }
777
778 void
779 _initialize_corelow (void)
780 {
781 init_core_ops ();
782
783 add_target (&core_ops);
784 }