Lines Matching refs:inferior

37 #include "inferior.h"
99 * Look in inferior's $PATH.
100 * Look in inferior's $LD_LIBRARY_PATH.
176 /* If not found, next search the inferior's $PATH environment variable. */
182 /* If not found, next search the inferior's $LD_LIBRARY_PATH
375 update_solib_list --- synchronize GDB's shared object list with inferior's
382 inferior, and compare it with the list of shared objects currently
384 with the inferior's new list.
386 If we notice that the inferior has unloaded some shared objects,
405 struct so_list *inferior = TARGET_SO_CURRENT_SOS ();
426 /* GDB and the inferior's dynamic linker each maintain their own
432 knows about it already, and it's still loaded in the inferior.
436 the inferior has unloaded it. We should remove the shared
439 - A shared object appears only on the inferior's list. This
444 in the inferior's list too. If it does, no action is needed, and
445 we remove it from the inferior's list. If it doesn't, the
446 inferior has unloaded it, and we remove it from GDB's list. By
447 the time we're done walking GDB's list, the inferior's list
454 struct so_list *i = inferior;
455 struct so_list **i_link = &inferior;
458 the inferior's current list. */
468 /* If the shared object appears on the inferior's list too, then
470 it from the inferior's list, and leave it on GDB's list. */
479 /* If it's not on the inferior's list, remove it from GDB's tables. */
501 /* Now the inferior's list contains only shared objects that don't
504 if (inferior)
509 *gdb_link = inferior;
512 for (i = inferior; i; i = i->next)
794 When gdb starts up the inferior, it nurses it along (through the
893 automatically when the inferior begins execution, when the dynamic linker\n\
895 inferior. Otherwise, symbols must be loaded manually, using `sharedlibrary'.",