Deleted Added
sdiff udiff text old ( 10494:ffe6ab7141ab ) new ( 10553:c1ad57c53a36 )
full compact
1/*
2 * Copyright (c) 2011-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

319 remoteGDB[context_id]->replaceThreadContext(tc);
320}
321
322Addr
323System::allocPhysPages(int npages)
324{
325 Addr return_addr = pagePtr << PageShift;
326 pagePtr += npages;
327 if ((pagePtr << PageShift) > physmem.totalSize())
328 fatal("Out of memory, please increase size of physical memory.");
329 return return_addr;
330}
331
332Addr
333System::memSize() const
334{

--- 151 unchanged lines hidden ---