Deleted Added
sdiff udiff text old ( 13317:36c574a4036e ) new ( 13334:b7b38ffa5863 )
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

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

33#include <stack>
34
35#include "base/logging.hh"
36#include "systemc/core/event.hh"
37#include "systemc/core/module.hh"
38#include "systemc/core/scheduler.hh"
39#include "systemc/ext/core/messages.hh"
40#include "systemc/ext/core/sc_module.hh"
41
42namespace sc_gem5
43{
44
45namespace
46{
47
48ObjectsIt

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

238Object::attr_cltn() const
239{
240 return cltn;
241}
242
243sc_core::sc_simcontext *
244Object::simcontext() const
245{
246 warn("%s not implemented.\n", __PRETTY_FUNCTION__);
247 return nullptr;
248}
249
250EventsIt
251Object::addChildEvent(sc_core::sc_event *e)
252{
253 return events.emplace(events.end(), e);
254}
255

--- 73 unchanged lines hidden ---