Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5cf7a60aaf47fc5289b714e0c0bde3e508545e4a (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package org.eclipse.linuxtools.lttng.jni.common;
/*******************************************************************************
 * Copyright (c) 2009 Ericsson
 * 
 * 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:
 *   William Bourque (wbourque@gmail.com) - Initial API and implementation
 *******************************************************************************/

/**
 * <b><u>Jni_C_Common</u></b>
 * <p>
 * Common constants and methods that should be shared between JNI objects.<p>
 * 
 * This class is abstract and is intended to be extended by LTTng modules that need the constants.
 */
public abstract class Jni_C_Constant {
    
    // Needed for native types
    public static final int NULL = 0;

    // C errno correspondance. Used to interpret LTT return value
    public static final int EOK    =  0;
    public static final int EPERM  =  1;
    public static final int ERANGE = 34;
    
    // Timestamps are in nanoseconds, this const ease up the math
    public static final long NANO = 1000000000;
    
    /**
     * Default constructor
     */
    public Jni_C_Constant() {
    }
    
    /**
     * "Alternate" .toString()<p>
     * 
     * Simulates the way Java Object implements "toString()"
     * 
     * @return The Java hashed UID of the object (i.e. : NAME@HASH)
     */
    public String getReferenceToString() {
        return this.getClass().getName() + "@" + Integer.toHexString(this.hashCode());
    }
}

Back to the top