| 442 | } |
| 443 | |
| 444 | remote_addr_t |
| 445 | AbstractProcessManager::scanBSS() const |
| 446 | { |
| 447 | LOG(INFO) << "Scanning BSS section for PyInterpreterState"; |
| 448 | if (!d_bss) { |
| 449 | LOG(INFO) << "BSS analysis could not be performed because the BSS section is missing"; |
| 450 | return (remote_addr_t) nullptr; |
| 451 | } |
| 452 | return scanMemoryAreaForInterpreterState(d_bss.value()); |
| 453 | } |
| 454 | |
| 455 | remote_addr_t |
| 456 | AbstractProcessManager::scanAllAnonymousMaps() const |