Pixar Arch
Loading...
Searching...
No Matches
symbols.h
Go to the documentation of this file.
1// Copyright 2016 Pixar
2//
3// Licensed under the terms set forth in the LICENSE.txt file available at
4// https://openusd.org/license.
5//
6// Modified by Jeremy Retailleau.
7
8#ifndef PXR_ARCH_SYMBOLS_H
9#define PXR_ARCH_SYMBOLS_H
10
13
14#include "./api.h"
15#include <string>
16
17namespace pxr {
18
31ARCH_API
32bool ArchGetAddressInfo(void* address,
33 std::string* objectPath, void** baseAddress,
34 std::string* symbolName, void** symbolAddress);
35
36} // namespace pxr
37
38#endif // PXR_ARCH_SYMBOLS_H
ARCH_API bool ArchGetAddressInfo(void *address, std::string *objectPath, void **baseAddress, std::string *symbolName, void **symbolAddress)
Returns information about the address address in the running program.