This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: dlopen bug!


In article <36481BE9.35E38846.cygnus.gnu-win32@uz.kuleuven.ac.be>,
Jorrit Tyberghein <Jorrit.Tyberghein@uz.kuleuven.ac.be> wrote:
>Hi, I'm using CygWin B20 on NT4 (SP3) and I think I have found a bug
>in dlopen.
>
>It seems that dlopen always returns the same handle even if used on different
>dll libraries. For example, I extended the dlopen example from:
>    ftp://ftp.xraylith.wisc.edu/pub/khan/gnu-win32/cygb20/misc/
>
>to open two dll's instead of only one and added the following lines to the
>code:
>
>    void* dll_handle;
>    void* dll_handle2;
>
>    ...
>
>    dll_handle = dlopen ("first.dll", RTLD_LAZY | RTLD_GLOBAL);
>    dll_handle2 = dlopen ("second.dll", RTLD_LAZY|RTLD_GLOBAL);
>
>Although first.dll and second.dll are really two different dll's dll_handle
>and dll_handle2 are equal to each other. Changing the RTLD flags to
>RTLD_NOW or something else doesn't help either.
>
>This is a major setback for me as I need to be able to do dlsym() on individual
>dll's (the dll's have functions which have the same name so I need to distinguish
>by giving the right dll handle).
>
>Is this a known bug?
>Can this be fixed somehow?

It may be a bug.  As always, we would welcome a patch to fix it.
-- 
cgf@cygnus.com
http://www.cygnus.com/
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]