ATLAS Offline Software
Loading...
Searching...
No Matches
DebugInfo.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef HEPHAESTUS_DEBUGINFO_H
6#define HEPHAESTUS_DEBUGINFO_H
7
8#include <dlfcn.h>
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14struct link_map;
15
16/* address -> human-readable, file/line information */
17const char* hhh_getDebugInfo( void *addr, Dl_info *info, struct link_map* lm, const char** );
18
19#ifdef __cplusplus
20} /* extern "C" */
21#endif
22
23#endif /* !HEPHAESTUS_DEBUGINFO_H */
const char * hhh_getDebugInfo(void *addr, Dl_info *info, struct link_map *lm, const char **)