|
Lines 1-3
Link Here
|
|
|
1 |
/******************************************************************************* |
| 2 |
* Copyright (c) 2010 Freescale Semiconductor and others. |
| 3 |
* All rights reserved. This program and the accompanying materials |
| 4 |
* are made available under the terms of the Eclipse Public License v1.0 |
| 5 |
* which accompanies this distribution, and is available at |
| 6 |
* http://www.eclipse.org/legal/epl-v10.html |
| 7 |
* |
| 8 |
* Contributors: |
| 9 |
* Freescale Semiconductor - Initial API and implementation |
| 10 |
*******************************************************************************/ |
| 1 |
package org.eclipse.cdt.gdb.eventbkpts; |
11 |
package org.eclipse.cdt.gdb.eventbkpts; |
| 2 |
|
12 |
|
| 3 |
public interface IEventBreakpointConstants { |
13 |
public interface IEventBreakpointConstants { |
|
Lines 19-33
Link Here
|
| 19 |
|
29 |
|
| 20 |
/** |
30 |
/** |
| 21 |
* An event breakpoint of this type suspends the target program when it |
31 |
* An event breakpoint of this type suspends the target program when it |
| 22 |
* catches a signal (POSIX). This type of event has a single parameter of |
|
|
| 23 |
* type in, indicating the specific signal. |
| 24 |
* |
| 25 |
* @since 7.0 |
| 26 |
*/ |
| 27 |
public static final String EVENT_TYPE_SIGNAL_CATCH = "org.eclipse.cdt.debug.gdb.signal"; //$NON-NLS-1$ |
| 28 |
|
| 29 |
/** |
| 30 |
* An event breakpoint of this type suspends the target program when it |
| 31 |
* calls fork() (POSIX). This type of event has no parameters. |
32 |
* calls fork() (POSIX). This type of event has no parameters. |
| 32 |
* |
33 |
* |
| 33 |
* @since 7.0 |
34 |
* @since 7.0 |
|
Lines 52-118
Link Here
|
| 52 |
|
53 |
|
| 53 |
/** |
54 |
/** |
| 54 |
* An event breakpoint of this type suspends the target program when it |
55 |
* An event breakpoint of this type suspends the target program when it |
| 55 |
* calls exit() (POSIX). This type of event has no parameters. |
56 |
* makes a system call (POSIX). This type of event takes a single parameter: |
| 56 |
* |
57 |
* the name or number of the system call. |
| 57 |
* @since 7.0 |
|
|
| 58 |
*/ |
| 59 |
public static final String EVENT_TYPE_EXIT = "org.eclipse.cdt.debug.gdb.catch_exit"; //$NON-NLS-1$ |
| 60 |
|
| 61 |
/** |
| 62 |
* An event breakpoint of this type suspends the target program when a new |
| 63 |
* process starts. This type of event has no parameters. |
| 64 |
* |
| 65 |
* @since 7.0 |
| 66 |
*/ |
| 67 |
public static final String EVENT_TYPE_PROCESS_START = "org.eclipse.cdt.debug.gdb.catch_start"; //$NON-NLS-1$ |
| 68 |
|
| 69 |
/** |
| 70 |
* An event breakpoint of this type suspends the target program when a |
| 71 |
* process exits. This type of event has no parameters. |
| 72 |
* |
| 73 |
* @since 7.0 |
| 74 |
*/ |
| 75 |
public static final String EVENT_TYPE_PROCESS_STOP = "org.eclipse.cdt.debug.gdb.catch_stop"; //$NON-NLS-1$ |
| 76 |
|
| 77 |
/** |
| 78 |
* An event breakpoint of this type suspends the target program when a new |
| 79 |
* thread starts. This type of event has no parameters. |
| 80 |
* |
| 81 |
* @since 7.0 |
| 82 |
*/ |
| 83 |
public static final String EVENT_TYPE_THREAD_START = "org.eclipse.cdt.debug.gdb.catch_thread_start"; //$NON-NLS-1$ |
| 84 |
|
| 85 |
/** |
| 86 |
* An event breakpoint of this type suspends the target program when a |
| 87 |
* thread exits. This type of event has no parameters. |
| 88 |
* |
| 89 |
* @since 7.0 |
| 90 |
*/ |
| 91 |
public static final String EVENT_TYPE_THREAD_EXIT = "org.eclipse.cdt.debug.gdb.catch_thread_exit"; //$NON-NLS-1$ |
| 92 |
|
| 93 |
/** |
| 94 |
* An event breakpoint of this type suspends the target program when a |
| 95 |
* thread joins another one (waits for it to exit) This type of event has no |
| 96 |
* parameters. |
| 97 |
* |
| 98 |
* @since 7.0 |
| 99 |
*/ |
| 100 |
public static final String EVENT_TYPE_THREAD_JOIN = "org.eclipse.cdt.debug.gdb.catch_thread_join"; //$NON-NLS-1$ |
| 101 |
|
| 102 |
/** |
| 103 |
* An event breakpoint of this type suspends the target program when it |
| 104 |
* loads a library. This type of event has no parameters. |
| 105 |
* |
58 |
* |
| 106 |
* @since 7.0 |
59 |
* @since 7.0 |
| 107 |
*/ |
60 |
*/ |
| 108 |
public static final String EVENT_TYPE_LIBRARY_LOAD = "org.eclipse.cdt.debug.gdb.catch_load"; //$NON-NLS-1$ |
61 |
public static final String EVENT_TYPE_SYSCALL = "org.eclipse.cdt.debug.gdb.catch_syscall"; //$NON-NLS-1$ |
| 109 |
|
|
|
| 110 |
/** |
| 111 |
* An event breakpoint of this type suspends the target program when it |
| 112 |
* unloads a library. This type of event has no parameters. |
| 113 |
* |
| 114 |
* @since 7.0 |
| 115 |
*/ |
| 116 |
public static final String EVENT_TYPE_LIBRARY_UNLOAD = "org.eclipse.cdt.debug.gdb.catch_unload"; //$NON-NLS-1$ |
| 117 |
|
| 118 |
} |
62 |
} |