f08bc85858
rather than for wincap.is_wow64. Accommodate name change from wow64_has_64bit_parent to wow64_needs_stack_adjustment. Align comment. (_dll_crt0): Ditto. * wincap.h (wincaps::wow64_has_secondary_stack): New element. * wincap.cc: Implement above element throughout. (wincapc::init): Set wow64_has_secondary_stack to false on non-64 bit systems. * wow64.cc (wow64_needs_stack_adjustment): Rename (hopefully the last time) from wow64_has_64bit_parent. (wow64_eval_expected_main_stack): Fix comment to reflect real life. (wow64_test_for_64bit_parent): Fix comment. * wow64.h (wow64_needs_stack_adjustment): Accommodate new name.
16 lines
447 B
C
16 lines
447 B
C
/* wow64.h
|
|
|
|
Copyright 2011 Red Hat, Inc.
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
extern bool NO_COPY wow64_needs_stack_adjustment;
|
|
|
|
extern bool wow64_test_for_64bit_parent ();
|
|
extern PVOID wow64_revert_to_original_stack (PVOID &allocationbase);
|
|
extern void wow64_respawn_process () __attribute__ ((noreturn));
|