mailing list of musl libc
 help / color / mirror / code / Atom feed
8c458225d5b01e7bf904da434ec48071b4d8d6e1 blob 927 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
 
#ifndef	_DLFCN_H
#define	_DLFCN_H

#ifdef __cplusplus
extern "C" {
#endif

#define RTLD_LAZY   1
#define RTLD_NOW    2
#define RTLD_GLOBAL 256
#define RTLD_LOCAL  0

#define RTLD_NEXT    ((void *)-1)
#define RTLD_DEFAULT ((void *)0)

int    dlclose(void *);
char  *dlerror(void);
void  *dlopen(const char *, int);
void  *dlsym(void *, const char *);

#ifdef _GNU_SOURCE
typedef struct {
    const char *dli_fname;  /* Pathname of shared object that
                               contains address */
    void       *dli_fbase;  /* Address at which shared object
                               is loaded */
    const char *dli_sname;  /* Name of nearest symbol with address
                               lower than addr */
    void       *dli_saddr;  /* Exact address of symbol named
                               in dli_sname */
} Dl_info;

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

#ifdef __cplusplus
}
#endif

#endif
debug log:

solving 8c45822 ...
found 8c45822 in https://inbox.vuxu.org/musl/502237A1.1000805@gmail.com/ ||
	https://inbox.vuxu.org/musl/5022703B.3090105@gmail.com/ ||
	https://inbox.vuxu.org/musl/5020DA13.6080803@gmail.com/
found dea74c7 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 dea74c7dc7fc387a046f9f1dac0422ef52389c59	include/dlfcn.h

applying [1/3] https://inbox.vuxu.org/musl/502237A1.1000805@gmail.com/
diff --git a/include/dlfcn.h b/include/dlfcn.h
index dea74c7..8c45822 100644

Checking patch include/dlfcn.h...
Applied patch include/dlfcn.h cleanly.

skipping https://inbox.vuxu.org/musl/5022703B.3090105@gmail.com/ for 8c45822
skipping https://inbox.vuxu.org/musl/5020DA13.6080803@gmail.com/ for 8c45822
index at:
100644 8c458225d5b01e7bf904da434ec48071b4d8d6e1	include/dlfcn.h

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).