/**************************************************************************** ** TAU Portable Profiling Package ** ** http://www.cs.uoregon.edu/research/paracomp/tau ** ***************************************************************************** ** Copyright 2003 ** ** Department of Computer and Information Science, University of Oregon ** ** Advanced Computing Laboratory, Los Alamos National Laboratory ** ** Research Center Juelich, Germany ** ****************************************************************************/ /*************************************************************************** ** File : TAU_tf_headers.h ** ** Description : TAU trace format reader library header files ** ** Author : Sameer Shende ** ** Contact : sameer@cs.uoregon.edu ** ***************************************************************************/ /* TAU Trace format */ #ifndef _TAU_TF_HEADERS_H_ #define _TAU_TF_HEADERS_H_ #include #include #ifdef _MSC_VER #include #else #define O_BINARY 0 #include #endif #include #include #ifdef TAU_LARGEFILE #define LARGEFILE_OPTION O_LARGEFILE #else #define LARGEFILE_OPTION 0 #endif #include #include using namespace std; /* TAU trace library specific headers */ #include #include #endif /* _TAU_TF_HEADERS_H_ */ /******************************************************************************** * $RCSfile: TAU_tf_headers.h,v $ $Author: amorris $ * $Revision: 1.5 $ $Date: 2009/01/17 02:24:48 $ * TAU_VERSION_ID: $Id: TAU_tf_headers.h,v 1.5 2009/01/17 02:24:48 amorris Exp $ *******************************************************************************/