Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Ooops! Perl interpreter has stopped working

by greenhorn_007 (Acolyte)
on Jun 04, 2014 at 09:06 UTC ( [id://1088597]=perlquestion: print w/replies, xml ) Need Help??

greenhorn_007 has asked for the wisdom of the Perl Monks concerning the following question:

Hello, I am here to seek wisdom again ;)
When I run my program, sometimes, just sometimes !! Perl crashes like that! So I have a few questions.
  • When can you get a message like that (generally speaking)?What could you mess up?
  • I am kind of curious.
  • The real question: I am using wxWidgets here, and am sure they are the source of the trouble. Sometimes when I make my closing actions on the frames - booom, perl interpreter says bye-bye. And sometimes nothing happens? How is it possible - one time program finishes ok, other time - perl interpreter stopped working? Can I really misuse wxWidgets that much, are they so sloppy written?
Hope someone can help, even a little bit.
  • Comment on Ooops! Perl interpreter has stopped working

Replies are listed 'Best First'.
Re: Ooops! Perl interpreter has stopped working
by zentara (Archbishop) on Jun 04, 2014 at 14:12 UTC
    The real question: I am using wxWidgets here, and am sure they are the source of the trouble. Sometimes when I make my closing actions on the frames - booom, perl interpreter says bye-bye. And sometimes nothing happens? How is it possible - one time program finishes ok, other time - perl interpreter stopped working? Can I really misuse wxWidgets that much, are they so sloppy written?

    From my experience, when you get crashes sometimes when running a gui, like Wx, it usually comes down to a timing problem in the eventloop compounded by differing system loads. What I mean is if your code is improperly finishing, by destroying a widget at the wrong time, or whatever, it sometimes will run ok if the gui program has full cpu access, but another time, when the system load is high, the gui's event-loop may get delayed in performing, and an odd crash may occur. It has got to be something in your code, please show it. If it comes when you destroy a frame, it may be possible that a child of that frame isn't destroying itself first, or some other esoteric timing error.


    I'm not really a human, but I play one on earth.
    Old Perl Programmer Haiku ................... flash japh
Re: Ooops! Perl interpreter has stopped working
by marto (Cardinal) on Jun 04, 2014 at 09:16 UTC

      OS: Windows 7 Enterprise
      Strawberry Perl (v5.18.2)
      And I am using wxWidgets, latest from CPAN. I can't really google it, looks like not many people have the "perl interpreter stopped working problem". Because the wxWidgets are written in C++ and in Perl we have some wrapper around them - I suspect the fault is somewhere in the C++ code (some pointer failures)- and some wrong messing with the wrapped functions from my side. Because this "program has stopped working... windows detected problem" etc stuff happens quite a lot when you program C/C++, and I have never really seen them in Perl -that's why I actually asked the first question - how can I get this mesg in general (because I am a curious soul).

        From memory when something dies and Windows reports this sort of error there is a button on the popup which provides further details. This may also be logged in Eventviewer. Using procmon and other tools from the sysinternals suite should aid debugging. Again, have you checked open bugs for the module or the version of wxWidgets being used? Still no example code, while I've never used wxWidgets someone may be able to point out problems.

Re: Ooops! Perl interpreter has stopped working
by Anonymous Monk on Jun 04, 2014 at 09:47 UTC

    Solution is simple, write better code

    perl -e " use Win32API::File; use Wx ; Wx::Font->new(undef) " perl -e " use Win32API::File; use Wx ; Win32API::File::SetErrorMode( +2); Wx::Font->new(undef) "
Re: Ooops! Perl interpreter has stopped working
by DrHyde (Prior) on Jun 04, 2014 at 10:50 UTC
    It crashes like what?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1088597]
Approved by marto
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (2)
As of 2024-04-18 23:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found