process.cc (9571:bd5fad6638b3) process.cc (9641:2285b98847d7)
1/*
2 * Copyright (c) 2012 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

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

569 __pid = params->pid;
570 __ppid = params->ppid;
571
572 // load up symbols, if any... these may be used for debugging or
573 // profiling.
574 if (!debugSymbolTable) {
575 debugSymbolTable = new SymbolTable();
576 if (!objFile->loadGlobalSymbols(debugSymbolTable) ||
1/*
2 * Copyright (c) 2012 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

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

569 __pid = params->pid;
570 __ppid = params->ppid;
571
572 // load up symbols, if any... these may be used for debugging or
573 // profiling.
574 if (!debugSymbolTable) {
575 debugSymbolTable = new SymbolTable();
576 if (!objFile->loadGlobalSymbols(debugSymbolTable) ||
577 !objFile->loadLocalSymbols(debugSymbolTable)) {
577 !objFile->loadLocalSymbols(debugSymbolTable) ||
578 !objFile->loadWeakSymbols(debugSymbolTable)) {
578 // didn't load any symbols
579 delete debugSymbolTable;
580 debugSymbolTable = NULL;
581 }
582 }
583}
584
585void

--- 155 unchanged lines hidden ---
579 // didn't load any symbols
580 delete debugSymbolTable;
581 debugSymbolTable = NULL;
582 }
583 }
584}
585
586void

--- 155 unchanged lines hidden ---