Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6a3dee24c0f32dc18fbc642be9a9574ddcf54cd2 (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
/*******************************************************************************
 * Copyright (c) 2011, 2018 IBM Corporation
 * 
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *    Daniel H Barboza <danielhb@br.ibm.com> - initial API and implementation
 *******************************************************************************/

package org.eclipse.linuxtools.internal.valgrind.helgrind;

public final class HelgrindLaunchConstants {
    // LaunchConfiguration attributes
    public static final String ATTR_HELGRIND_LOCKORDERS = HelgrindPlugin.PLUGIN_ID
            + ".HELGRIND_LOCKORDERS"; //$NON-NLS-1$
    public static final String ATTR_HELGRIND_HISTORYLEVEL = HelgrindPlugin.PLUGIN_ID
            + ".HELGRIND_HISTORYLEVEL"; //$NON-NLS-1$
    public static final String ATTR_HELGRIND_CACHESIZE = HelgrindPlugin.PLUGIN_ID
            + ".HELGRIND_CACHESIZE"; //$NON-NLS-1$

    // default values
    public static final String HISTORY_NONE = "none"; //$NON-NLS-1$
    public static final String HISTORY_APPROX = "approx"; //$NON-NLS-1$
    public static final String HISTORY_FULL = "full"; //$NON-NLS-1$

    public static final boolean DEFAULT_HELGRIND_LOCKORDERS = true;
    public static final String DEFAULT_HELGRIND_HISTORYLEVEL = HISTORY_FULL;
    public static final int DEFAULT_HELGRIND_CACHESIZE = 1000000;

}

Back to the top