Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e8038bfed79cd6518df844a9c50509001f54cbef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*******************************************************************************
 * Copyright (c) 2008, 2013 Wind River Systems and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *     IBM Corporation - bug fixing
 *******************************************************************************/
package org.eclipse.debug.examples.core.pda.protocol;


/**
 * Set a watchpoint on variable <code>variable_name</code> in function
 * <code>function</code> to magic value <code>watch_operation</code>.  The magic
 * value is a bit flag corresponding to read access (1), write access (2), or
 * both (3); the magic value 0 clears the watchpoint.
 *
 * <pre>
 *    C: watch {function}::{variable_name} {watch_operation}
 *    R: ok
 *    C: vmresume
 *    R: vmresumed client
 *    E: vmsuspended {thread_id} watch {watch_operation} {function}::{variable_name}
 * </pre>
 */
public class PDAWatchCommand extends PDACommand {

    public static final int READ = 1;
    public static final int WRITE = 2;
    public static final int BOTH = READ | WRITE;
    public static final int NONE = 0;

    public PDAWatchCommand(String function, String variable, int operation) {
        super("watch " + function+ "::" + variable + " " + operation); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
    }


    @Override
	public PDACommandResult createResult(String resultText) {
        return new PDACommandResult(resultText);
    }
}

Back to the top