I remember back in '00 when Braxton Thomason wrote:
> Does anyone know about dynamically loaded modules for C++ in linux?  I am
> on AIX and trying to port some dynmodules, but linux does not have the
> loadbind system call... Is there an equivalent or a way around this?


DLOPEN(3)           Linux Programmer's Manual           DLOPEN(3)

NAME
       dlclose, dlerror, dlopen, dlsym - Programming interface to
       dynamic linking loader.

SYNOPSIS
       #include <dlfcn.h>

       void *dlopen (const char *filename, int flag);
       const char *dlerror(void);
       void *dlsym(void *handle, char *symbol);
       int dlclose (void *handle);

       Special symbols: _init, _fini.

DESCRIPTION
       dlopen loads a dynamic library from the file named by  the
       null  terminated  string  filename  and  returns an opaque
       "handle" for the dynamic library.  If filename is  not  an
       absolute  path  (i.e., it does not begin with a "/"), then
       the file is searched for in the following locations:

<...>

Is that what you're looking for?

                Matt


-- 
/* Matt Sayler -- [EMAIL PROTECTED] -- (512) 494-7360
   DO ABSTAIN FROM INTERCAL */
---------------------------------------------------------------------------
Send administrative requests to [EMAIL PROTECTED]

Reply via email to