source: proiecte/hpl/openmpi_compiled/include/vampirtrace/vt_user_comment.h @ 97

Last change on this file since 97 was 97, checked in by (none), 14 years ago

Adding compiled files

File size: 884 bytes
Line 
1/**
2 * VampirTrace
3 * http://www.tu-dresden.de/zih/vampirtrace
4 *
5 * Copyright (c) 2005-2008, ZIH, TU Dresden, Federal Republic of Germany
6 *
7 * Copyright (c) 1998-2005, Forschungszentrum Juelich, Juelich Supercomputing
8 *                          Centre, Federal Republic of Germany
9 *
10 * See the file COPYING in the package base directory for details
11 **/
12
13#ifndef _VT_USER_COMMENT_H
14#define _VT_USER_COMMENT_H
15
16#ifdef __cplusplus
17#   define EXTERN extern "C"
18#else
19#   define EXTERN extern
20#endif
21
22#if (defined(VTRACE)) && !(defined(VTRACE_NO_COMMENT))
23
24  EXTERN void VT_User_comment_def__(const char* comment);
25  EXTERN void VT_User_comment__(const char* comment);
26
27  #define VT_COMMENT_DEF(c) VT_User_comment_def__(c)
28  #define VT_COMMENT(c) VT_User_comment__(c)
29
30#else
31
32  #define VT_COMMENT_DEF(c)
33  #define VT_COMMENT(c)
34
35#endif /* VTRACE */
36
37#endif /* _VT_USER_COMMENT_H */
Note: See TracBrowser for help on using the repository browser.