py: Move stack_ctrl_init() to mp_init().

As stack checking is enabled by default, ports which don't call
stack_ctrl_init() are broken now (report RuntimeError on startup). Save
them trouble and just init stack control framework in interpreter init.
This commit is contained in:
Paul Sokolovsky
2014-06-27 20:54:22 +03:00
parent 64c58403ef
commit 8a96ebea75
3 changed files with 3 additions and 2 deletions

View File

@@ -265,7 +265,6 @@ void pre_process_options(int argc, char **argv) {
#endif
int main(int argc, char **argv) {
stack_ctrl_init();
stack_set_limit(32768);
pre_process_options(argc, argv);