Deleted Added
sdiff udiff text old ( 13132:1fb4a87f550f ) new ( 13175:b93fb6caf043 )
full compact
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 38 unchanged lines hidden (view full) ---

47#include "systemc/ext/core/sc_module.hh"
48#include "systemc/ext/core/sc_port.hh"
49#include "systemc/ext/core/sc_process_handle.hh"
50#include "systemc/ext/utils/sc_report.hh"
51
52namespace sc_gem5
53{
54
55class Sensitivity
56{
57 protected:
58 Process *process;
59
60 public:
61 Sensitivity(Process *p) : process(p) {}
62 virtual ~Sensitivity() {}

--- 338 unchanged lines hidden ---