File:  [DVB] / dietlibc / include / dlfcn.h
Revision 1.7: download - view: text, annotated - select for diffs
Fri Oct 10 10:42:16 2014 UTC (9 years, 8 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
remove a few warnings
add gcc 4.6+ leaf function annotation

#ifndef _DLFCN_H
#define _DLFCN_H 1

#include <sys/cdefs.h>

#define RTLD_LAZY	0x00000
#define RTLD_NOW	0x00001

#define RTLD_LOCAL	0x00000
#define RTLD_GLOBAL	0x10000

#define RTLD_DEFAULT	((void*)1)
#define RTLD_NEXT	((void*)2)

__BEGIN_DECLS

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

#ifdef _GNU_SOURCE
typedef struct
{
  const char *dli_fname;
  void *dli_fbase;
  const char *dli_sname;
  void *dli_saddr;
} Dl_info;

int dladdr(void *addr, Dl_info *info);
#endif

__END_DECLS

#endif

LinuxTV legacy CVS <linuxtv.org/cvs>