Typo in dlfcn.c

git-svn-id: svn://kolibrios.org@7950 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Magomed Kostoev (mkostoevr) 2020-05-19 12:05:54 +00:00
parent 9cf480409c
commit a78dbc7bec

View File

@ -14,9 +14,9 @@ typedef struct {
char * libraryName;
} KosImp;
static const char *__error;
static int stdcall dll_Load(KosImp *importTableEntry);
static int stdcall dll_Load(KosImp *importTable);
static const char *__error;
static int stdcall dll_Load(KosImp *importTableEntry) {
for (; importTableEntry->importNames; importTableEntry++) {
@ -38,7 +38,7 @@ static int stdcall dll_Load(KosImp *importTableEntry) {
void *dlopen(const char *name, int mode) {
KosExp *exports = NULL;
// загрузить либу сискаллом
// load library using syscall
asm volatile ("int $0x40":"=a"(exports):"a"(68), "b"(19), "c"(name));
if (!exports) {
char libPath[256] = "/sys/lib/";
@ -50,7 +50,7 @@ void *dlopen(const char *name, int mode) {
return NULL;
}
}
// Вызвать что-нибудь что начинается с "lib_"
// call anything starting with "lib_"
for (KosExp *export = exports; export->name; export++) {
if (!memcmp(export->name, "lib_", 4)) {
asm volatile (