| 592 | } |
| 593 | |
| 594 | static int elf_zero_bss(struct rt_lwp *lwp, int fd, const Elf_Phdr *phdr, rt_ubase_t bss_start, |
| 595 | rt_ubase_t bss_end) |
| 596 | { |
| 597 | lwp_data_set(lwp, (void *)bss_start, 0, bss_end - bss_start); |
| 598 | |
| 599 | return RT_EOK; |
| 600 | } |
| 601 | |
| 602 | /** |
| 603 | * @brief Map ELF segments into memory. |
no test coverage detected