
- fixed compiler warnings - fixed Coverity warnings - vtrun: - do preload libvt-fmpi.so only if it is available This commit was SVN r25056.
24 строки
596 B
C
24 строки
596 B
C
/**
|
|
* VampirTrace
|
|
* http://www.tu-dresden.de/zih/vampirtrace
|
|
*
|
|
* Copyright (c) 2005-2011, ZIH, TU Dresden, Federal Republic of Germany
|
|
*
|
|
* Copyright (c) 1998-2005, Forschungszentrum Juelich, Juelich Supercomputing
|
|
* Centre, Federal Republic of Germany
|
|
*
|
|
* See the file COPYING in the package base directory for details
|
|
**/
|
|
|
|
#ifndef _VT_JVMTI_H
|
|
#define _VT_JVMTI_H
|
|
|
|
/* Disable all compiler warnings before including the actual
|
|
JVMTI header file. */
|
|
#ifdef __GNUC__
|
|
# pragma GCC system_header
|
|
#endif /* __GNUC__ */
|
|
#include "jvmti.h"
|
|
|
|
#endif /* _VT_JVMTI_H */
|