search for: _sys_elfcommon_h

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

2005 Jan 06
0
[PATCH] ELF headers
...lude/sys/elfcommon.h klibc-0.178-fogo/include/sys/elfcommon.h --- klibc-0.178/include/sys/elfcommon.h 2004-01-30 14:40:51.000000000 -0700 +++ klibc-0.178-fogo/include/sys/elfcommon.h 2004-09-20 09:21:09.000000000 -0600 @@ -2,6 +2,8 @@ * sys/elfcommon.h */ +#include <stdint.h> + #ifndef _SYS_ELFCOMMON_H #define _SYS_ELFCOMMON_H @@ -182,5 +184,33 @@ #define ELFOSABI_NONE 0 #define ELFOSABI_LINUX 3 +/* How to extract and insert information held in the st_info field. */ + +#define ST_BIND(val) (((unsigned char) (val)) >> 4) +#define ST_TYPE(val) ((val) & 0xf) +#define ST_INFO(b...
2007 Dec 10
1
[git patch] m-i-t support, ipconfig fix
...2 /* Weak symbol */ +#define STB_NUM 3 /* Number of defined types. */ +#define STB_LOOS 10 /* Start of OS-specific */ +#define STB_HIOS 12 /* End of OS-specific */ +#define STB_LOPROC 13 /* Start of processor-specific */ +#define STB_HIPROC 15 /* End of processor-specific */ + #endif /* _SYS_ELFCOMMON_H */ commit 8c4bf5fd4c5e0bd85d1d29f489bdb980edf1a489 Author: maximilian attems <max at stro.at> Date: Fri Sep 21 19:47:31 2007 +0200 [klibc] klibc/socketcalls/.gitignore addition on !i386 socketcalls generates .c files Signed-off-by: maximilian attems <max at stro.a...
2007 Sep 22
3
[git patch] module-init-tools fixes
...2 /* Weak symbol */ +#define STB_NUM 3 /* Number of defined types. */ +#define STB_LOOS 10 /* Start of OS-specific */ +#define STB_HIOS 12 /* End of OS-specific */ +#define STB_LOPROC 13 /* Start of processor-specific */ +#define STB_HIPROC 15 /* End of processor-specific */ + #endif /* _SYS_ELFCOMMON_H */ commit 8c4bf5fd4c5e0bd85d1d29f489bdb980edf1a489 Author: maximilian attems <max at stro.at> Date: Fri Sep 21 19:47:31 2007 +0200 [klibc] klibc/socketcalls/.gitignore addition on !i386 socketcalls generates .c files Signed-off-by: maximilian attems <max at stro.a...