Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2989 → Rev 2988

/branches/dynload/uspace/app/iloader/include/pcb.h
33,7 → 33,6
#ifndef ILOADER_PCB_H_
#define ILOADER_PCB_H_
 
#include <sys/types.h>
#include <arch/pcb.h>
 
typedef void (*entry_point_t)(void);
47,15 → 46,8
/** Program entry point */
entry_point_t entry;
 
/*
* ELF-specific data
*/
/** Pointer to ELF dynamic section of the program */
void *dynamic;
/** Pointer to dynamic section of the runtime linker */
void *rtld_dynamic;
/** Runtime-linker load bias */
uintptr_t rtld_bias;
void *dynamic;
} pcb_t;
 
#endif