1/* 2 * Copyright (c) 2000-2005 The Regents of The University of Michigan 3 * Copyright (c) 2013 Advanced Micro Devices, Inc. 4 * Copyright (c) 2013 Mark D. Hill and David A. Wood 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions are --- 27 unchanged lines hidden (view full) --- 36 */ 37 38#ifndef __SIM_EVENTQ_HH__ 39#define __SIM_EVENTQ_HH__ 40 41#include <algorithm> 42#include <cassert> 43#include <climits> |
44#include <functional> |
45#include <iosfwd> 46#include <memory> 47#include <mutex> 48#include <string> 49 50#include "base/flags.hh" 51#include "base/types.hh" 52#include "debug/Event.hh" --- 788 unchanged lines hidden --- |