Changeset b5e68c8 in mainline for uspace/lib/c/arch/ia32/include/rtld/elf_dyn.h
- Timestamp:
- 2011-05-12T16:49:44Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f36787d7
- Parents:
- e80329d6 (diff), 750636a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/ia32/include/rtld/elf_dyn.h
re80329d6 rb5e68c8 1 1 /* 2 * Copyright (c) 200 5 Sergey Bondari2 * Copyright (c) 2008 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup amd6429 /** @addtogroup generic 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef KERN_amd64_MEMSTR_H_36 #define KERN_amd64_MEMSTR_H_35 #ifndef LIBC_ia32_RTLD_ELF_DYN_H_ 36 #define LIBC_ia32_RTLD_ELF_DYN_H_ 37 37 38 #define memcpy(dst, src, cnt) __builtin_memcpy((dst), (src), (cnt)) 38 /* 39 * ia32 dynamic relocation types 40 */ 39 41 40 extern void memsetw(void *, size_t, uint16_t); 41 extern void memsetb(void *, size_t, uint8_t); 42 #define R_386_32 1 43 #define R_386_PC32 2 44 #define R_386_COPY 5 45 #define R_386_GLOB_DAT 6 46 #define R_386_JUMP_SLOT 7 47 #define R_386_RELATIVE 8 48 49 #define R_386_TLS_DTPMOD32 35 42 50 43 51 #endif
Note:
See TracChangeset
for help on using the changeset viewer.