~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to valgrind/org.eclipse.linuxtools.valgrind.massif/src/org/eclipse/linuxtools/internal/valgrind/massif/MassifCommandConstants.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2012-06-29 12:07:30 UTC
  • Revision ID: package-import@ubuntu.com-20120629120730-bfri1xys1i71dpn6
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*******************************************************************************
 
2
 * Copyright (c) 2009 Red Hat, Inc.
 
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
 *    Elliott Baron <ebaron@redhat.com> - initial API and implementation
 
10
 *******************************************************************************/
 
11
package org.eclipse.linuxtools.internal.valgrind.massif;
 
12
 
 
13
public final class MassifCommandConstants {
 
14
        // Valgrind program arguments
 
15
        public static final String OPT_MASSIF_OUTFILE = "--massif-out-file"; //$NON-NLS-1$
 
16
        public static final String OPT_HEAP = "--heap"; //$NON-NLS-1$
 
17
        public static final String OPT_HEAPADMIN = "--heap-admin"; //$NON-NLS-1$
 
18
        public static final String OPT_STACKS = "--stacks"; //$NON-NLS-1$
 
19
        public static final String OPT_DEPTH = "--depth"; //$NON-NLS-1$
 
20
        public static final String OPT_ALLOCFN = "--alloc-fn"; //$NON-NLS-1$
 
21
        public static final String OPT_IGNOREFN = "--ignore-fn"; //<name> $NON-NLS-1$
 
22
        public static final String OPT_THRESHOLD = "--threshold"; //$NON-NLS-1$
 
23
        public static final String OPT_PEAKINACCURACY = "--peak-inaccuracy"; //$NON-NLS-1$
 
24
        public static final String OPT_TIMEUNIT = "--time-unit"; //$NON-NLS-1$
 
25
        public static final String OPT_DETAILEDFREQ = "--detailed-freq"; //$NON-NLS-1$
 
26
        public static final String OPT_MAXSNAPSHOTS = "--max-snapshots"; //$NON-NLS-1$
 
27
        public static final String OPT_ALIGNMENT = "--alignment"; //$NON-NLS-1$
 
28
        
 
29
        // VG >= 3.6.0
 
30
        public static final String OPT_PAGESASHEAP = "--pages-as-heap"; //$NON-NLS-1$
 
31
}