Changeset 2eadda9 in mainline for uspace/lib/c/arch/amd64
- Timestamp:
- 2018-07-11T17:45:30Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 99d3123
- Parents:
- c2c4127
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-11 17:08:12)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-11 17:45:30)
- Location:
- uspace/lib/c/arch/amd64
- Files:
-
- 2 edited
-
_link.ld.in (modified) (1 diff)
-
src/entry.S (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/amd64/_link.ld.in
rc2c4127 r2eadda9 57 57 58 58 .init_array : { 59 #ifndef SHLIB 59 60 PROVIDE_HIDDEN (__init_array_start = .); 61 #endif 60 62 KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*))) 61 63 KEEP (*(.init_array .ctors)) 64 #ifndef SHLIB 62 65 PROVIDE_HIDDEN (__init_array_end = .); 66 #endif 63 67 } 64 68 65 69 .fini_array : { 70 #ifndef SHLIB 66 71 PROVIDE_HIDDEN (__fini_array_start = .); 72 #endif 67 73 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*))) 68 74 KEEP (*(.fini_array .dtors)) 75 #ifndef SHLIB 69 76 PROVIDE_HIDDEN (__fini_array_end = .); 77 #endif 70 78 } 71 79 -
uspace/lib/c/arch/amd64/src/entry.S
rc2c4127 r2eadda9 29 29 #include <abi/asmtool.h> 30 30 31 . section .init, "ax"31 .text 32 32 33 33 .org 0 … … 46 46 47 47 # %rdi was deliberately chosen as the first argument is also in %rdi 48 # Pass PCB pointer to __ libc_main(no operation)49 call __ libc_main48 # Pass PCB pointer to __c_start (no operation) 49 call __c_start
Note:
See TracChangeset
for help on using the changeset viewer.
