void _initialize_irix5_nat (void) { struct target_ops *t; t = procfs_target (); procfs_use_watchpoints (t); add_target (t); deprecated_add_core_fns (&irix5_core_fns); }
void _initialize_sparc_sol2_nat (void) { struct target_ops *t; t = procfs_target (); #ifdef NEW_PROC_API /* Solaris 6 and above can do HW watchpoints. */ procfs_use_watchpoints (t); #endif add_target (t); }
void _initialize_amd64_sol2_nat (void) { struct target_ops *t; /* Fill in the generic procfs methods. */ t = procfs_target (); #ifdef NEW_PROC_API /* Solaris 6 and above can do HW watchpoints */ procfs_use_watchpoints (t); #endif #if defined (PR_MODEL_NATIVE) && (PR_MODEL_NATIVE == PR_MODEL_LP64) amd64_native_gregset32_reg_offset = amd64_sol2_gregset32_reg_offset; amd64_native_gregset32_num_regs = ARRAY_SIZE (amd64_sol2_gregset32_reg_offset); amd64_native_gregset64_reg_offset = amd64_sol2_gregset64_reg_offset; amd64_native_gregset64_num_regs = ARRAY_SIZE (amd64_sol2_gregset64_reg_offset); #endif add_target (t); }