Ignore:
Timestamp:
2011-05-01T19:34:26Z (13 years ago)
Author:
Martin Sucha <sucha14@…>
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.
Message:

Merge mainline changes

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/ia32/include/rtld/elf_dyn.h

    r1ff896e r694ca93f  
    11/*
    2  * Copyright (c) 2005 Sergey Bondari
     2 * Copyright (c) 2008 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup arm32
     29/** @addtogroup generic
    3030 * @{
    3131 */
    3232/** @file
    33  *  @brief Memory manipulating functions declarations.
    3433 */
    3534
    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_
    3837
    39 #define memcpy(dst, src, cnt)  __builtin_memcpy((dst), (src), (cnt))
     38/*
     39 * ia32 dynamic relocation types
     40 */
    4041
    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
    4350
    4451#endif
Note: See TracChangeset for help on using the changeset viewer.