search for: st_bind

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

Did you mean: sti_bind
2005 Jan 06
0
[PATCH] ELF headers
...diff -uNr klibc-0.178/include/sys/elf32.h klibc-0.178-fogo/include/sys/elf32.h --- klibc-0.178/include/sys/elf32.h 2004-01-30 14:40:51.000000000 -0700 +++ klibc-0.178-fogo/include/sys/elf32.h 2004-09-20 09:15:58.000000000 -0600 @@ -7,6 +7,10 @@ #include <sys/elfcommon.h> +#define ELF32_ST_BIND(val) ST_BIND (val) +#define ELF32_ST_TYPE(val) ST_TYPE (val) +#define ELF32_ST_INFO(bind, type) ST_INFO ((bind), (type)) + /* ELF standard typedefs (yet more proof that <stdint.h> was way overdue) */ typedef uint16_t Elf32_Half; typedef int16_t Elf32_SHalf; diff -uNr klibc-0.178/inclu...
2007 Dec 10
1
[git patch] m-i-t support, ipconfig fix
...lude/sys/elf32.h index e4df8ce..6da2ddb 100644 --- a/usr/include/sys/elf32.h +++ b/usr/include/sys/elf32.h @@ -110,4 +110,8 @@ typedef struct elf32_note { Elf32_Word n_type; /* Content type */ } Elf32_Nhdr; +/* How to extract and insert information held in the st_info field. */ +#define ELF32_ST_BIND(val) (((unsigned char) (val)) >> 4) +#define ELF32_ST_TYPE(val) ((val) & 0xf) + #endif /* _SYS_ELF32_H */ diff --git a/usr/include/sys/elf64.h b/usr/include/sys/elf64.h index 0b486ac..877b7cd 100644 --- a/usr/include/sys/elf64.h +++ b/usr/include/sys/elf64.h @@ -110,4 +110,8 @@ type...
2007 Sep 22
3
[git patch] module-init-tools fixes
...lude/sys/elf32.h index e4df8ce..6da2ddb 100644 --- a/usr/include/sys/elf32.h +++ b/usr/include/sys/elf32.h @@ -110,4 +110,8 @@ typedef struct elf32_note { Elf32_Word n_type; /* Content type */ } Elf32_Nhdr; +/* How to extract and insert information held in the st_info field. */ +#define ELF32_ST_BIND(val) (((unsigned char) (val)) >> 4) +#define ELF32_ST_TYPE(val) ((val) & 0xf) + #endif /* _SYS_ELF32_H */ diff --git a/usr/include/sys/elf64.h b/usr/include/sys/elf64.h index 0b486ac..877b7cd 100644 --- a/usr/include/sys/elf64.h +++ b/usr/include/sys/elf64.h @@ -110,4 +110,8 @@ type...