Ignore:
Timestamp:
Feb 16, 2017, 3:46:11 PM (7 years ago)
Author:
meunier
Message:
  • Functional (or supposedly functional) OpenMP support configure must be run with --enable-use-omp and the topcell must define the USE_OPENMP flag before including the .h files of systemcass (if openmp enabled).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sources/src/sc_port_ext.h

    r60 r62  
    295295    std::cerr << "write " << value_ << " on in/out port (writing into a signal) '" << name() << "'\n";
    296296#endif
    297   T *p = (T*)get_pointer();
    298   if (*p != value_) {
    299         *p = value_;
     297    T * p = (T *) get_pointer();
     298    if (*p != value_) {
     299        *p = value_;
    300300#ifndef USE_PORT_DEPENDENCY
    301         if (unstable == 0)
    302                 unstable = 1;
    303 #endif
    304   }
     301        if (unstable == 0) {
     302            unstable = 1;
     303        }
     304#endif
     305    }
    305306}
    306307
Note: See TracChangeset for help on using the changeset viewer.