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

public final class MassifCommandConstants {
	// Valgrind program arguments
	public static final String OPT_MASSIF_OUTFILE = "--massif-out-file"; //$NON-NLS-1$
	public static final String OPT_HEAP = "--heap"; //$NON-NLS-1$
	public static final String OPT_HEAPADMIN = "--heap-admin"; //$NON-NLS-1$
	public static final String OPT_STACKS = "--stacks"; //$NON-NLS-1$
	public static final String OPT_PAGESASHEAP = "--pages-as-heap"; //no|yes $NON-NLS-1$
	public static final String OPT_DEPTH = "--depth"; //$NON-NLS-1$
	public static final String OPT_ALLOCFN = "--alloc-fn"; //$NON-NLS-1$
	public static final String OPT_IGNOREFN = "--ignore-fn"; //<name> $NON-NLS-1$
	public static final String OPT_THRESHOLD = "--threshold"; //$NON-NLS-1$
	public static final String OPT_PEAKINACCURACY = "--peak-inaccuracy"; //$NON-NLS-1$
	public static final String OPT_TIMEUNIT = "--time-unit"; //$NON-NLS-1$
	public static final String OPT_DETAILEDFREQ = "--detailed-freq"; //$NON-NLS-1$
	public static final String OPT_MAXSNAPSHOTS = "--max-snapshots"; //$NON-NLS-1$
	public static final String OPT_ALIGNMENT = "--alignment"; //$NON-NLS-1$
}

Back to the top