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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
/****************************************************************************
** TAU Portable Profiling Package **
** http://www.cs.uoregon.edu/research/tau **
*****************************************************************************
** Copyright 2008 **
** Department of Computer and Information Science, University of Oregon **
** Advanced Computing Laboratory, Los Alamos National Laboratory **
** Forschungszentrum Juelich **
****************************************************************************/
/****************************************************************************
** File : tau_internal.h **
** Description : TAU Profiling Package **
** Contact : tau-bugs@cs.uoregon.edu **
** Documentation : See http://www.cs.uoregon.edu/research/tau **
** **
** Description : Include this header in all TAU source files **
** But not user applications **
** **
****************************************************************************/
#ifndef _TAU_INTERNAL_H_
#define _TAU_INTERNAL_H_
#if (defined(TAU_WINDOWS))
#define TAUDECL __cdecl
#else
#define TAUDECL
#endif /* TAU_WINDOWS */
#include <Profile/tau_types.h>
#ifdef TAU_LARGEFILE
#define LARGEFILE_OPTION O_LARGEFILE
#else
#define LARGEFILE_OPTION 0
#endif
#ifdef TAU_WINDOWS
#include <io.h>
#include <direct.h> /* for getcwd */
#define S_IRUSR 0
#define S_IWUSR 0
#define S_IRGRP 0
#define S_IWGRP 0
#define S_IROTH 0
#define S_IWOTH 0
#else
#include <unistd.h>
#include <sys/time.h>
#define O_BINARY 0
#endif
#ifdef TAU_WINDOWS
#define TAUROOT "root"
#define TAU_ARCH "win32"
#else
#include "tauroot.h"
#include "tauarch.h"
#endif
#ifdef __cplusplus
#ifdef HAVE_TR1_HASH_MAP
#include <tr1/unordered_map>
#define TAU_HASH_MAP std::tr1::unordered_map
#else
#include <map>
#define TAU_HASH_MAP std::map
#endif /* HAVE_HASH_MAP */
#endif /* __cplusplus */
#endif /* _TAU_INTERNAL_H_ */
|