DirectedGenerator.hh (8655:e4001326a5ba) DirectedGenerator.hh (8832:247fee427324)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

44
45 virtual bool initiate() = 0;
46 virtual void performCallback(uint32_t proc, Addr address) = 0;
47
48 void setDirectedTester(RubyDirectedTester* directed_tester);
49
50 protected:
51 int m_num_cpus;
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

44
45 virtual bool initiate() = 0;
46 virtual void performCallback(uint32_t proc, Addr address) = 0;
47
48 void setDirectedTester(RubyDirectedTester* directed_tester);
49
50 protected:
51 int m_num_cpus;
52 MasterID masterId;
52 RubyDirectedTester* m_directed_tester;
53};
54
55#endif //__CPU_DIRECTEDTEST_DIRECTEDGENERATOR_HH__
56
53 RubyDirectedTester* m_directed_tester;
54};
55
56#endif //__CPU_DIRECTEDTEST_DIRECTEDGENERATOR_HH__
57