glibc.h
author Hajime Tazaki <tazaki@nict.go.jp>
Wed, 13 Feb 2013 22:37:34 +0900
changeset 651 9d7e2cd9633b
parent 529 cccc081ed03d
permissions -rw-r--r--
add a testcase to reproduce threaded dlclose crash (Bug 1513)

#ifndef GLIBC_H
#define GLIBC_H

struct VdlList;

// Interfaces needed to make glibc be able to work when
// loaded with this loader.

// set _dl_starting_up to 1. Must be called
// just before calling the executable's entry point.
void glibc_startup_finished (void);

void glibc_initialize (void);

void glibc_patch (struct VdlList *files);


#endif /* GLIBC_H */