base.cc (10464:2a0fe8bca031) | base.cc (10529:05b5a6cf3521) |
---|---|
1/* 2 * Copyright (c) 2010-2012 ARM Limited 3 * Copyright (c) 2013 Advanced Micro Devices, Inc. 4 * All rights reserved 5 * 6 * The license below extends only to copyright in the software and shall 7 * not be construed as granting a license to any other intellectual 8 * property including but not limited to intellectual property relating --- 333 unchanged lines hidden (view full) --- 342BaseSimpleCPU::dbg_vtophys(Addr addr) 343{ 344 return vtophys(tc, addr); 345} 346 347void 348BaseSimpleCPU::wakeup() 349{ | 1/* 2 * Copyright (c) 2010-2012 ARM Limited 3 * Copyright (c) 2013 Advanced Micro Devices, Inc. 4 * All rights reserved 5 * 6 * The license below extends only to copyright in the software and shall 7 * not be construed as granting a license to any other intellectual 8 * property including but not limited to intellectual property relating --- 333 unchanged lines hidden (view full) --- 342BaseSimpleCPU::dbg_vtophys(Addr addr) 343{ 344 return vtophys(tc, addr); 345} 346 347void 348BaseSimpleCPU::wakeup() 349{ |
350 getAddrMonitor()->gotWakeup = true; 351 |
|
350 if (thread->status() != ThreadContext::Suspended) 351 return; 352 353 DPRINTF(Quiesce,"Suspended Processor awoke\n"); 354 thread->activate(); 355} 356 357void --- 239 unchanged lines hidden --- | 352 if (thread->status() != ThreadContext::Suspended) 353 return; 354 355 DPRINTF(Quiesce,"Suspended Processor awoke\n"); 356 thread->activate(); 357} 358 359void --- 239 unchanged lines hidden --- |