File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ use 5.008;
5
5
use strict;
6
6
use warnings;
7
7
8
- our $VERSION = ' 2.39 ' ; # remember to update version in POD!
8
+ our $VERSION = ' 2.40 ' ; # remember to update version in POD!
9
9
my $XS_VERSION = $VERSION ;
10
- $VERSION = eval $VERSION ;
10
+ # $VERSION = eval $VERSION;
11
11
12
12
# Verify this Perl supports threads
13
13
require Config;
@@ -134,7 +134,7 @@ threads - Perl interpreter-based threads
134
134
135
135
=head1 VERSION
136
136
137
- This document describes threads version 2.39
137
+ This document describes threads version 2.40
138
138
139
139
=head1 WARNING
140
140
Original file line number Diff line number Diff line change @@ -796,7 +796,8 @@ S_ithread_create(
796
796
int fd = PerlIO_fileno (Perl_error_log );
797
797
if (fd >= 0 ) {
798
798
/* If there's no error_log, we cannot scream about it missing. */
799
- PERL_UNUSED_RESULT (PerlLIO_write (fd , PL_no_mem , strlen (PL_no_mem )));
799
+ static const char oomp [] = "Out of memory in perl:threads:ithread_create\n" ;
800
+ PERL_UNUSED_RESULT (PerlLIO_write (fd , oomp , sizeof oomp - 1 ));
800
801
}
801
802
}
802
803
my_exit (1 );
You can’t perform that action at this time.
0 commit comments