00001 // Copyright 2007 Sandia Corporation. Under the terms 00002 // of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. 00003 // Government retains certain rights in this software. 00004 // 00005 // Copyright (c) 2007, Sandia Corporation 00006 // All rights reserved. 00007 // 00008 // This file is part of the SST software package. For license 00009 // information, see the LICENSE file in the top level directory of the 00010 // distribution. 00011 00012 00013 00014 #ifndef SIM_TRACE_H 00015 #define SIM_TRACE_H 00016 00017 #include <stdio.h> 00018 00019 #include <sim_trace_types.h> 00020 00021 void SIM_trace( unsigned long long ts, int node, const char *str, 00022 unsigned int var1, unsigned int var2, unsigned int var3 ); 00023 00024 void SIM_MHZ( int mhz); 00025 void SIM_open( const char *name ); 00026 void SIM_close(); 00027 00028 00029 #endif