systemc: Add a non-standard default writer policy on sc_buffer.
authorGabe Black <gabeblack@google.com>
Thu, 7 Jun 2018 21:39:31 +0000 (14:39 -0700)
committerGabe Black <gabeblack@google.com>
Wed, 15 Aug 2018 01:29:56 +0000 (01:29 +0000)
The standard says there's not supposed to be a default writer policy
for the sc_buffer template class, but in the Accellera implementation
there is, and the regression tests depend on it to compile.

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

src/systemc/ext/channel/sc_buffer.hh

index 153b60b1056fda936155b8f3d6622c86173f287c..22081605e4cb2bda4af4b7ed2cdd26705a77ce3d 100644 (file)
@@ -37,7 +37,9 @@
 namespace sc_core
 {
 
-template <class T, sc_writer_policy WRITER_POLICY>
+// Having a default value for the WRITER_POLICY parameter is non-standard, but
+// matches the Accellera implementation to enable the regression tests.
+template <class T, sc_writer_policy WRITER_POLICY=SC_ONE_WRITER>
 class sc_buffer : public sc_signal<T, WRITER_POLICY>
 {
   public: