diff options
author | midipix <writeonce@midipix.org> | 2016-05-23 00:18:30 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-05-23 04:20:42 -0400 |
commit | 4a76017445c1ffe4b7a99b4e2e5dc7f661eaae2b (patch) | |
tree | de7b343a05a423d8a4d8201cc2f011a25551b665 /src/process | |
parent | 8ce0ee786539ba865367dbe68185ffed0ff700a7 (diff) | |
download | ntapi-4a76017445c1ffe4b7a99b4e2e5dc7f661eaae2b.tar.bz2 ntapi-4a76017445c1ffe4b7a99b4e2e5dc7f661eaae2b.tar.xz |
__tt_fork_v1(): nt32: add missing _v1 suffixes to internal symbols.
Diffstat (limited to 'src/process')
-rw-r--r-- | src/process/nt32/tt_fork_v1.s | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/process/nt32/tt_fork_v1.s b/src/process/nt32/tt_fork_v1.s index 2e2f01d..e15025d 100644 --- a/src/process/nt32/tt_fork_v1.s +++ b/src/process/nt32/tt_fork_v1.s @@ -6,13 +6,13 @@ .section .text -.global ___tt_fork +.global ___tt_fork_v1 .global ___tt_fork_child_entry_point .global @__tt_fork_child_entry_point@4 .global ___tt_fork_child_entry_point_adj .global @__tt_fork_child_entry_point_adj@4 -___tt_fork: +___tt_fork_v1: ___tt_fork_prolog: push %ebp mov %esp, %ebp @@ -27,7 +27,7 @@ ___tt_fork_save_regs: ___tt_fork_impl_call: mov %esp, %ecx mov $0, %edx - call @__tt_fork_impl@8 + call @__tt_fork_impl_v1@8 ___tt_fork_restore_regs: pop %edi |