Changeset 694ca93f in mainline for uspace/lib/c/arch/ia32/include/rtld/elf_dyn.h
- Timestamp:
- 2011-05-01T19:34:26Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0e26444
- Parents:
- 1ff896e (diff), 042fbe0 (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
r1ff896e r694ca93f 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 arm3229 /** @addtogroup generic 30 30 * @{ 31 31 */ 32 32 /** @file 33 * @brief Memory manipulating functions declarations.34 33 */ 35 34 36 #ifndef KERN_arm32_MEMSTR_H_37 #define KERN_arm32_MEMSTR_H_35 #ifndef LIBC_ia32_RTLD_ELF_DYN_H_ 36 #define LIBC_ia32_RTLD_ELF_DYN_H_ 38 37 39 #define memcpy(dst, src, cnt) __builtin_memcpy((dst), (src), (cnt)) 38 /* 39 * ia32 dynamic relocation types 40 */ 40 41 41 extern void memsetw(void *, size_t, uint16_t); 42 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 43 50 44 51 #endif
Note:
See TracChangeset
for help on using the changeset viewer.