Rev 3681 | Rev 3690 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3681 | Rev 3686 | ||
|---|---|---|---|
| Line 136... | Line 136... | ||
| 136 | */ |
136 | */ |
| 137 | void elf_create_pcb(elf_info_t *info, pcb_t *pcb) |
137 | void elf_create_pcb(elf_info_t *info, pcb_t *pcb) |
| 138 | { |
138 | { |
| 139 | pcb->entry = info->entry; |
139 | pcb->entry = info->entry; |
| 140 | pcb->dynamic = info->dynamic; |
140 | pcb->dynamic = info->dynamic; |
| - | 141 | pcb->rtld_runtime = NULL; |
|
| 141 | } |
142 | } |
| 142 | 143 | ||
| 143 | 144 | ||
| 144 | /** Load an ELF binary. |
145 | /** Load an ELF binary. |
| 145 | * |
146 | * |