/usr/lib/tau/include/Profile/TauVampirTrace.h is in tau 2.17.3.1.dfsg-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #ifndef __TAU_VAMPIRTRACE_H__
#define __TAU_VAMPIRTRACE_H__
#ifdef TAU_64BITTYPES_NEEDED
#include <Profile/vt_inttypes.h>
#endif /* TAU_64BITTYPES_NEEDED */
#ifndef VT_NO_ID
#define VT_NO_ID 0xFFFFFFFF
#endif /* VT_NO_ID */
#ifndef VT_NO_LNO
#define VT_NO_LNO 0xFFFFFFFF
#endif /* VT_NO_LNO */
#ifndef VT_FUNCTION
#define VT_FUNCTION 1
#endif /* VT_FUNCTION */
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
void vt_open(void);
void vt_close(void);
uint32_t vt_def_region ( const char* rname,
uint32_t fid,
uint32_t begln,
uint32_t endln,
const char* rdesc,
uint8_t rtype );
void vt_enter(uint64_t* time, uint32_t rid);
void vt_exit(uint64_t* time);
uint64_t vt_pform_wtime(void);
uint32_t vt_def_counter_group ( const char* gname );
void vt_count(uint64_t* time, uint32_t cid, uint64_t cval);
uint32_t vt_def_counter (const char* cname, uint32_t cprop, uint32_t gid,
const char* cunit);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __TAU_VAMPIRTRACE_H__ */
|