Changeset 49093a4 in mainline for uspace/lib/libc/include/loader/pcb.h
- Timestamp:
- 2008-12-05T22:44:24Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2b1f860
- Parents:
- 965dc18
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/loader/pcb.h
r965dc18 r49093a4 48 48 */ 49 49 typedef struct { 50 /** Program entry point */50 /** Program entry point. */ 51 51 entry_point_t entry; 52 52 53 /** Number of command-line arguments */53 /** Number of command-line arguments. */ 54 54 int argc; 55 /** Command-line arguments */55 /** Command-line arguments. */ 56 56 char **argv; 57 57 58 58 /* 59 * ELF-specific data 59 * ELF-specific data. 60 60 */ 61 /** Pointer to ELF dynamic section of the program */61 /** Pointer to ELF dynamic section of the program. */ 62 62 void *dynamic; 63 /** Pointer to dynamic section of the runtime linker */64 void *rtld_dynamic;65 /** Runtime-linker load bias */66 uintptr_t rtld_bias;67 63 } pcb_t; 68 64 65 /** 66 * A pointer to the program control block. Having received the PCB pointer, 67 * the C library startup code stores it here for later use. 68 */ 69 69 extern pcb_t *__pcb; 70 70
Note:
See TracChangeset
for help on using the changeset viewer.