Use SYMBOL() instead of FUNCTION() to define the function end symbol. The

following function might otherwise not be shown correctly in ELF tools.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34952 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2010-01-08 17:24:29 +00:00
parent 68effbf082
commit 440a118398
2 changed files with 2 additions and 2 deletions

View File

@ -613,7 +613,7 @@ FUNCTION(i386_return_from_signal):
int $99
ret
FUNCTION_END(i386_return_from_signal)
FUNCTION(i386_end_return_from_signal):
SYMBOL(i386_end_return_from_signal):
/*! void i386_restore_frame_from_syscall(struct iframe iframe);

View File

@ -157,7 +157,7 @@ FUNCTION(x86_userspace_thread_exit):
int $99
.align 4
FUNCTION_END(x86_userspace_thread_exit)
FUNCTION(x86_end_userspace_thread_exit):
SYMBOL(x86_end_userspace_thread_exit):
/* void x86_enter_userspace(addr_t entry, addr_t stackTop); */