113252Sgabeblack@google.com/*
213252Sgabeblack@google.com * Copyright 2018 Google, Inc.
313252Sgabeblack@google.com *
413252Sgabeblack@google.com * Redistribution and use in source and binary forms, with or without
513252Sgabeblack@google.com * modification, are permitted provided that the following conditions are
613252Sgabeblack@google.com * met: redistributions of source code must retain the above copyright
713252Sgabeblack@google.com * notice, this list of conditions and the following disclaimer;
813252Sgabeblack@google.com * redistributions in binary form must reproduce the above copyright
913252Sgabeblack@google.com * notice, this list of conditions and the following disclaimer in the
1013252Sgabeblack@google.com * documentation and/or other materials provided with the distribution;
1113252Sgabeblack@google.com * neither the name of the copyright holders nor the names of its
1213252Sgabeblack@google.com * contributors may be used to endorse or promote products derived from
1313252Sgabeblack@google.com * this software without specific prior written permission.
1413252Sgabeblack@google.com *
1513252Sgabeblack@google.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1613252Sgabeblack@google.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1713252Sgabeblack@google.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1813252Sgabeblack@google.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1913252Sgabeblack@google.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2013252Sgabeblack@google.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2113252Sgabeblack@google.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2213252Sgabeblack@google.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2313252Sgabeblack@google.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2413252Sgabeblack@google.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2513252Sgabeblack@google.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2613252Sgabeblack@google.com *
2713252Sgabeblack@google.com * Authors: Gabe Black
2813252Sgabeblack@google.com */
2913252Sgabeblack@google.com
3013252Sgabeblack@google.com#ifndef __SYSTEMC_CORE_TIME_HH__
3113252Sgabeblack@google.com#define __SYSTEMC_CORE_TIME_HH__
3213252Sgabeblack@google.com
3313252Sgabeblack@google.com#include "base/types.hh"
3413252Sgabeblack@google.com
3513252Sgabeblack@google.comnamespace sc_gem5
3613252Sgabeblack@google.com{
3713252Sgabeblack@google.com
3813252Sgabeblack@google.comextern const char *TimeUnitNames[];
3913265Sgabeblack@google.comextern const char *TimeUnitConstantNames[];
4013252Sgabeblack@google.comextern double TimeUnitScale[];
4113252Sgabeblack@google.comextern Tick TimeUnitFrequency[];
4213252Sgabeblack@google.com
4313252Sgabeblack@google.com} // namespace sc_gem5
4413252Sgabeblack@google.com
4513252Sgabeblack@google.com#endif // __SYSTEMC_CORE_TIME_HH__
46