search for: stn_undef

Displaying 3 results from an estimated 3 matches for "stn_undef".

Did you mean: shn_undef
2012 May 22
0
[klibc:master] include: [sys/elfcommon.h] define STN_UNDEF
.../klibc.git;a=commit;h=01b7dde0664ef67eada14dc163d015eb603fda74 Author: maximilian attems <max at stro.at> AuthorDate: Tue, 22 May 2012 19:15:44 +0200 Committer: maximilian attems <max at stro.at> CommitDate: Tue, 22 May 2012 19:15:44 +0200 [klibc] include: [sys/elfcommon.h] define STN_UNDEF Noticed while trying to compile kexec against klibc. Signed-off-by: maximilian attems <max at stro.at> --- usr/include/sys/elfcommon.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/usr/include/sys/elfcommon.h b/usr/include/sys/elfcommon.h index ad5e459..300ff4...
2012 May 31
1
klibc 2.0 release
...t signals [klibc] Makefile: help document V=2 switch [klibc] klcc: pass down -v [klibc] tests: Add simple sscanf check [klibc] ipconfig: Use /run/ directory for script file [klibc] include: [sys/socket.h] define SOMAXCONN [klibc] include: [sys/elfcommon.h] define STN_UNDEF [klibc] klcc.1: document -nostdinc [klibc] include: [stdio.h] add clearerr() prototype [klibc] include: [limits.h] define SSIZE_MAX [klibc] Add faccessat() system call [klibc] README update arch status [klibc] kinit: Fix capabilities alternate read/write io witho...
2012 Apr 17
2
[GIT PULL] elflink warning fixes and auto extension support
...dule->sym_table + i * module->syment_size); + crt_sym = symbol_get_entry(module, i); crt_name = module->str_table + crt_sym->st_name; strong_count = 0; @@ -434,7 +434,7 @@ static Elf32_Sym *module_find_symbol_sysv(const char *name, struct elf_module *m while (crt_index != STN_UNDEF) { - crt_sym = (Elf32_Sym*)(module->sym_table + crt_index*module->syment_size); + crt_sym = symbol_get_entry(module, crt_index); if (strcmp(name, module->str_table + crt_sym->st_name) == 0) return crt_sym; @@ -489,8 +489,7 @@ static Elf32_Sym *module_find_symbol_gnu(const cha...