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

« back to all changes in this revision

Viewing changes to valgrind/org.eclipse.linuxtools.valgrind.helgrind/src/org/eclipse/linuxtools/internal/valgrind/helgrind/HelgrindCommandConstants.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) 2011 IBM Corporation
 
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
 *    Daniel H Barboza <danielhb@br.ibm.com> - initial API and implementation
 
10
 *******************************************************************************/
 
11
package org.eclipse.linuxtools.internal.valgrind.helgrind;
 
12
 
 
13
/*
 
14
 *  user options for Helgrind:
 
15
 *   --track-lockorders=no|yes show lock ordering errors? [yes]
 
16
 *   --history-level=none|approx|full [full]
 
17
 *      full:   show both stack traces for a data race (can be very slow)
 
18
 *      approx: full trace for one thread, approx for the other (faster)
 
19
 *      none:   only show trace for one thread in a race (fastest)
 
20
 *   --conflict-cache-size=N   size of 'full' history cache [1000000]
 
21
 */
 
22
public final class HelgrindCommandConstants 
 
23
{
 
24
        public static final String OPT_TRACK_LOCKORDERS = "--track-lockorders"; //$NON-NLS-1$
 
25
        public static final String OPT_HISTORY_LEVEL = "--history-level"; //$NON-NLS-1$
 
26
        public static final String OPT_CONFLICT_CACHE_SIZE = "--conflict-cache-size"; //$NON-NLS-1$
 
27
 
 
28
}