1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

(_dl_make_stack_executable): Disable for static linking.

This commit is contained in:
Roland McGrath
2004-03-20 20:30:05 +00:00
parent 2b0a8f4562
commit fda5aa66ed

View File

@ -35,6 +35,7 @@ _dl_make_stack_executable (void **stack_endp)
return EPERM;
*stack_endp = NULL;
#ifdef IS_IN_rtld
if (__mprotect ((void *)_dl_hurd_data->stack_base, _dl_hurd_data->stack_size,
PROT_READ|PROT_WRITE|PROT_EXEC) != 0)
return errno;
@ -43,5 +44,9 @@ _dl_make_stack_executable (void **stack_endp)
GL(dl_stack_flags) |= PF_X;
return 0;
#else
/* We don't bother to implement this for static linking. */
return ENOSYS;
#endif
}
rtld_hidden_def (_dl_make_stack_executable)