aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.h
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2006-12-30 15:56:00 +0000
committerDaniel Jacobowitz <drow@false.org>2006-12-30 15:56:00 +0000
commit17e245fee09354432a01380c0605c611394a30d9 (patch)
treef0833fd5a8eb43a3e426f08a05ad3eaf9ba8402d /gdb/target.h
parent8264bb58d66b04ee787f18e5cb6a54f6cc75e620 (diff)
downloadgdb-17e245fee09354432a01380c0605c611394a30d9.zip
gdb-17e245fee09354432a01380c0605c611394a30d9.tar.gz
gdb-17e245fee09354432a01380c0605c611394a30d9.tar.bz2
* infrun.c (handle_inferior_event): Don't call
ENSURE_VFORKING_PARENT_REMAINS_STOPPED. * target.h (ENSURE_VFORKING_PARENT_REMAINS_STOPPED): Delete. (RESUME_EXECD_VFORKING_CHILD_TO_GET_PARENT_VFORK): Delete.
Diffstat (limited to 'gdb/target.h')
-rw-r--r--gdb/target.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/gdb/target.h b/gdb/target.h
index 412bf93..179e387 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -1186,28 +1186,6 @@ extern int target_stopped_data_address_p (struct target_ops *);
extern const struct target_desc *target_read_description (struct target_ops *);
-/* This will only be defined by a target that supports catching vfork events,
- such as HP-UX.
-
- On some targets (such as HP-UX 10.20 and earlier), resuming a newly vforked
- child process after it has exec'd, causes the parent process to resume as
- well. To prevent the parent from running spontaneously, such targets should
- define this to a function that prevents that from happening. */
-#if !defined(ENSURE_VFORKING_PARENT_REMAINS_STOPPED)
-#define ENSURE_VFORKING_PARENT_REMAINS_STOPPED(PID) (0)
-#endif
-
-/* This will only be defined by a target that supports catching vfork events,
- such as HP-UX.
-
- On some targets (such as HP-UX 10.20 and earlier), a newly vforked child
- process must be resumed when it delivers its exec event, before the parent
- vfork event will be delivered to us. */
-
-#if !defined(RESUME_EXECD_VFORKING_CHILD_TO_GET_PARENT_VFORK)
-#define RESUME_EXECD_VFORKING_CHILD_TO_GET_PARENT_VFORK() (0)
-#endif
-
/* Routines for maintenance of the target structures...
add_target: Add a target to the list of all possible targets.