Exit code: -1073741515 ???

[email protected] (ToddAndMargo via perl6-users) Wed, 9 Jul 2025 16:09:54 -0700
Newsgroups perl.perl6.users
Message-ID <[email protected]>
Hi All,

Windows 11

I have seen this on two customers now.  It happens randomly.

This is Cobian Reflector reading back the exit codes from
my programs, which Cobian calls:

"ERR The exit code of the program "C:\Program Files\Rakudo\bin\raku.exe"
is not zero. Exit code: -1073741515"

-1073741515   ???


These are my exit codes:

class ExitCodesClass {
    has Int  $.NormalExit             = 0;
    has Int  $.UnknownExit            = 1;
    has Int  $.InsufficientDriveSpace = 2;
    has Int  $.FirstArchiveExists     = 3;
    has Int  $.RotatePruneFailed      = 4;
    has Int  $.HelpCalled             = 5;
    has Int  $.NoParameters           = 6;
    has int  $.PremissionDenied       = 7;
    has Int  $.RotateTargetExists     = 8;
    has Int  $.ValidityCheckFailed    = 9;
    has Int  $.WrongOS                = 10;
}
my $ExitCodes = ExitCodesClass.new();


What the heck???
-T