systemc: Add deprecated default time unit management functions.
authorGabe Black <gabeblack@google.com>
Sat, 16 Jun 2018 03:00:36 +0000 (20:00 -0700)
committerGabe Black <gabeblack@google.com>
Wed, 22 Aug 2018 01:08:38 +0000 (01:08 +0000)
Having default time units is deprecated, and so are the functions that
manage them.

Change-Id: Ie21f9a5fca9868dd4f0adcd9f32c568fbec1fa72
Reviewed-on: https://gem5-review.googlesource.com/11270
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>

src/systemc/core/sc_time.cc
src/systemc/ext/core/_using.hh
src/systemc/ext/core/sc_time.hh

index 022895733778d8e24580572b1c89e40db1639fa4..383d1d4ad6aba89c6c6c43a0d249a8ff0f9a0f66 100644 (file)
@@ -229,4 +229,17 @@ sc_max_time()
     return *(const sc_time *)nullptr;
 }
 
+void
+sc_set_default_time_unit(double, sc_time_unit)
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+}
+
+sc_time
+sc_get_default_time_unit()
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+    return *(sc_time *)nullptr;
+}
+
 } // namespace sc_core
index 32cbd70289a1d70acc3b71144f2c0b160bacbaec..331e3dd9a604c4dd9c29bc3e24532670be3617b8 100644 (file)
@@ -140,5 +140,7 @@ using sc_core::SC_ZERO_TIME;
 using sc_core::sc_set_time_resolution;
 using sc_core::sc_get_time_resolution;
 using sc_core::sc_max_time;
+using sc_core::sc_get_default_time_unit;
+using sc_core::sc_set_default_time_unit;
 
 #endif  //__SYSTEMC_EXT_CORE__USING_HH__
index 456d59e020cb35a509801464153d54f0bb1c9ecc..32f7eadda9527dcf97c092e253ffd0c3e6348d16 100644 (file)
@@ -93,6 +93,10 @@ void sc_set_time_resolution(double, sc_time_unit);
 sc_time sc_get_time_resolution();
 const sc_time &sc_max_time();
 
+// Deprecated
+void sc_set_default_time_unit(double, sc_time_unit);
+sc_time sc_get_default_time_unit();
+
 } // namespace sc_core
 
 #endif  //__SYSTEMC_EXT_CORE_SC_TIME_HH__