summaryrefslogtreecommitdiff
path: root/sal/osl/unx/module.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/osl/unx/module.cxx')
-rw-r--r--sal/osl/unx/module.cxx49
1 files changed, 0 insertions, 49 deletions
diff --git a/sal/osl/unx/module.cxx b/sal/osl/unx/module.cxx
index 606c8fa475a1..3eabc6294f83 100644
--- a/sal/osl/unx/module.cxx
+++ b/sal/osl/unx/module.cxx
@@ -31,57 +31,9 @@
#include "system.hxx"
#include "file_url.hxx"
-#ifdef AIX
-#include <sys/ldr.h>
-#endif
-
static bool getModulePathFromAddress(void * address, rtl_String ** path)
{
bool result = false;
-#if defined(AIX)
- int size = 4 * 1024;
- char *buf, *filename=NULL;
- struct ld_info *lp;
-
- if ((buf = (char*)malloc(size)) == NULL)
- return false;
-
- //figure out how big a buffer we need
- while (loadquery(L_GETINFO, buf, size) == -1 && errno == ENOMEM)
- {
- size += 4 * 1024;
- free(buf);
- if ((buf = (char*)malloc(size)) == NULL)
- return false;
- }
-
- lp = (struct ld_info*) buf;
- while (lp)
- {
- unsigned long start = (unsigned long)lp->ldinfo_dataorg;
- unsigned long end = start + lp->ldinfo_datasize;
- if (start <= (unsigned long)address && end > (unsigned long)address)
- {
- filename = lp->ldinfo_filename;
- break;
- }
- if (!lp->ldinfo_next)
- break;
- lp = (struct ld_info*) ((char *) lp + lp->ldinfo_next);
- }
-
- if (filename)
- {
- rtl_string_newFromStr(path, filename);
- result = sal_True;
- }
- else
- {
- result = sal_False;
- }
-
- free(buf);
-#else
#if HAVE_UNIX_DLAPI
Dl_info dl_info;
@@ -95,7 +47,6 @@ static bool getModulePathFromAddress(void * address, rtl_String ** path)
(void) address;
(void) path;
#endif
-#endif
return result;
}