Changeset 8a1fb09 in mainline for uspace/lib/c/include


Ignore:
Timestamp:
2011-05-01T12:10:47Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9fb1397
Parents:
d2a6a04b
Message:

Integrate rest of rtld/ into C library.

Location:
uspace/lib/c/include/rtld
Files:
7 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/rtld/dynamic.h

    rd2a6a04b r8a1fb09  
    2727 */
    2828
    29 /** @addtogroup generic
     29/** @addtogroup libc
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef DYNAMIC_H_
    36 #define DYNAMIC_H_
     35#ifndef LIBC_RTLD_DYNAMIC_H_
     36#define LIBC_RTLD_DYNAMIC_H_
    3737
    3838#include <bool.h>
    39 #include <elf_dyn.h>
     39#include <rtld/elf_dyn.h>
    4040#include <libarch/rtld/dynamic.h>
    4141
  • uspace/lib/c/include/rtld/elf_dyn.h

    rd2a6a04b r8a1fb09  
    2727 */
    2828
    29 /** @addtogroup generic
     29/** @addtogroup libc
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef ELF_DYN_H_
    36 #define ELF_DYN_H_
     35#ifndef LIBC_RTLD_ELF_DYN_H_
     36#define LIBC_RTLD_ELF_DYN_H_
    3737
    3838#include <arch/elf.h>
  • uspace/lib/c/include/rtld/module.h

    rd2a6a04b r8a1fb09  
    2727 */
    2828
    29 /** @addtogroup generic
     29/** @addtogroup libc
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef MODULE_H_
    36 #define MODULE_H_
     35#ifndef LIBC_RTLD_MODULE_H_
     36#define LIBC_RTLD_MODULE_H_
    3737
    3838#include <sys/types.h>
    39 #include <dynamic.h>
     39#include <rtld/dynamic.h>
    4040#include <adt/list.h>
    4141
  • uspace/lib/c/include/rtld/rtld.h

    rd2a6a04b r8a1fb09  
    2727 */
    2828
    29 /** @addtogroup generic
     29/** @addtogroup libc
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef RTLD_H_
    36 #define RTLD_H_
     35#ifndef LIBC_RTLD_H_
     36#define LIBC_RTLD_H_
    3737
    3838#include <sys/types.h>
    3939#include <adt/list.h>
    4040
    41 #include <dynamic.h>
    42 #include <module.h>
     41#include <rtld/dynamic.h>
     42#include <rtld/module.h>
    4343
    4444typedef struct {
  • uspace/lib/c/include/rtld/rtld_arch.h

    rd2a6a04b r8a1fb09  
    2727 */
    2828
    29 /** @addtogroup generic
     29/** @addtogroup libc
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef RTLD_ARCH_H_
    36 #define RTLD_ARCH_H_
     35#ifndef LIBC_RTLD_RTLD_ARCH_H_
     36#define LIBC_RTLD_RTLD_ARCH_H_
    3737
    38 #include <rtld.h>
     38#include <rtld/rtld.h>
    3939#include <loader/pcb.h>
    4040
  • uspace/lib/c/include/rtld/rtld_debug.h

    rd2a6a04b r8a1fb09  
    2727 */
    2828
    29 /** @addtogroup generic
     29/** @addtogroup libc
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef RTLD_DEBUG_H_
    36 #define RTLD_DEBUG_H_
     35#ifndef LIBC_RTLD_RTLD_DEBUG_H_
     36#define LIBC_RTLD_RTLD_DEBUG_H_
    3737
    3838/* Define to enable debugging mode. */
  • uspace/lib/c/include/rtld/symbol.h

    rd2a6a04b r8a1fb09  
    2727 */
    2828
    29 /** @addtogroup generic
     29/** @addtogroup libc
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef SYMBOL_H_
    36 #define SYMBOL_H_
     35#ifndef LIBC_RTLD_SYMBOL_H_
     36#define LIBC_RTLD_SYMBOL_H_
    3737
    38 #include <rtld.h>
     38#include <rtld/rtld.h>
    3939#include <elf.h>
    4040
Note: See TracChangeset for help on using the changeset viewer.