Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dc43f09bedf6aa3371c2e528cb4246650f226e2d (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) 2009, 2018 Red Hat, Inc.
 * 
 * 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:
 *    Elliott Baron <ebaron@redhat.com> - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.internal.valgrind.memcheck;

public final class MemcheckCommandConstants {
    // Valgrind program arguments
    public static final String OPT_LEAKCHECK = "--leak-check"; //$NON-NLS-1$
    public static final String OPT_SHOWREACH = "--show-reachable"; //$NON-NLS-1$
    public static final String OPT_LEAKRES = "--leak-resolution"; //$NON-NLS-1$
    public static final String OPT_FREELIST = "--freelist-vol"; //$NON-NLS-1$
    public static final String OPT_GCCWORK = "--workaround-gcc296-bugs"; //$NON-NLS-1$
    public static final String OPT_PARTIAL = "--partial-loads-ok"; //$NON-NLS-1$
    public static final String OPT_UNDEF = "--undef-value-errors"; //$NON-NLS-1$
    public static final String OPT_ALIGNMENT = "--alignment"; //$NON-NLS-1$
    public static final String OPT_IGNORERANGES = "--ignore-ranges"; //$NON-NLS-1$
    public static final String OPT_MALLOCFILL = "--malloc-fill"; //$NON-NLS-1$
    public static final String OPT_FREEFILL = "--free-fill"; //$NON-NLS-1$

    // VG >= 3.4.0
    public static final String OPT_TRACKORIGINS = "--track-origins"; //$NON-NLS-1$

    // VG >= 3.6.0
    public static final String OPT_SHOW_POSSIBLY_LOST = "--show-possibly-lost"; //$NON-NLS-1$
}

Back to the top