-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Memory Leak #970
Comments
From reza@emarq.comperl_alloc is apparently not safe. |
From [Unknown Contact. See original ticket]At 05:33 PM 12/17/99 -0800, reza@emarq.com wrote:
How big is huge? And have you set PERL_DESTRUCT_LEVEL to something other Dan ----------------------------------------"it's like this"------------------- |
From [Unknown Contact. See original ticket]Dan Sugalski wrote:
Dear Dan. #include <stdlib.h> PerlInterpreter *p; int main(int argc, char** argv, char** env) This is how I compile it: And my g++ and perl versions are: g++ -v returns: perl -v returns: |
From [Unknown Contact. See original ticket]A long time ago, reza@emarq.com wrote:
This appears to still be true under bleadperl. -spp |
From @simoncozensOn Mon, Dec 11, 2000 at 10:41:21AM -0500, Stephen P. Potter wrote:
This is because init_interp (called from perl_construct) resets the value of (in intrpvar.h) However, changing this to Here's a fix, anyway. Inline Patch--- perl.c~ Mon Dec 11 16:41:39 2000
+++ perl.c Mon Dec 11 16:55:39 2000
@@ -648,15 +648,12 @@
/* Now absolutely destruct everything, somehow or other, loops or no. */
last_sv_count = 0;
SvFLAGS(PL_fdpid) |= SVTYPEMASK; /* don't clean out pid table now */
- SvFLAGS(PL_strtab) |= SVTYPEMASK; /* don't clean out strtab now */
while (PL_sv_count != 0 && PL_sv_count != last_sv_count) {
last_sv_count = PL_sv_count;
sv_clean_all();
}
SvFLAGS(PL_fdpid) &= ~SVTYPEMASK;
SvFLAGS(PL_fdpid) |= SVt_PVAV;
- SvFLAGS(PL_strtab) &= ~SVTYPEMASK;
- SvFLAGS(PL_strtab) |= SVt_PVHV;
AvREAL_off(PL_fdpid); /* no surviving entries */
SvREFCNT_dec(PL_fdpid); /* needed in io_close() */
@@ -667,7 +664,7 @@
#endif
/* Destruct the global string table. */
- {
+ if (PL_strtab) {
/* Yell and reset the HeVAL() slots that are still holding refcounts,
* so that sv_free() won't fail on them.
*/
--- ../perlio/intrpvar.h Sun Dec 10 15:08:33 2000
+++ intrpvar.h Mon Dec 11 16:45:06 2000
@@ -52,7 +52,7 @@
/* This value may be set when embedding for full cleanup */
/* 0=none, 1=full, 2=full with checks */
-PERLVARI(Iperl_destruct_level, int, 0)
+PERLVAR(Iperl_destruct_level, int)
/* magical thingies */
PERLVAR(Ibasetime, Time_t) /* $^T */ |
From @gsarOn Mon, 11 Dec 2000 16:57:07 GMT, Simon Cozens wrote:
Shouldn't matter, since it then immediately sets it to 1.
Can you explain the rationale behind those changes? They doen't look (PL_strtab needs to hang around until after everything that uses Sarathy |
From @simoncozensOn Mon, Dec 11, 2000 at 12:47:44PM -0800, Gurusamy Sarathy wrote:
Not all the world is using MULTIPLICITY: #ifdef MULTIPLICITY
Yes, but PL_strtab had already gone by the time we got there. |
From @gsarOn Mon, 11 Dec 2000 10:41:21 EST, "Stephen P. Potter" wrote:
Setting PL_perl_destruct_level before the perl_alloc() makes no That also proves that you're not building it with -DMULTIPLICITY,
Sarathy |
From @gsarOn Mon, 11 Dec 2000 21:04:17 GMT, Simon Cozens wrote:
If they create more than one interpreter, they should be. (This
That looks suspicious to me (perhaps something else is broken). Sarathy |
From [Unknown Contact. See original ticket]Since there's a flurry of memory leak plugging, here's another one from -spp ------- Forwarded Message A long time ago, reza@emarq.com wrote:
This appears to still be true under bleadperl. -spp This is because init_interp (called from perl_construct) resets the value of (in intrpvar.h) However, changing this to Here's a fix, anyway. Inline Patch--- perl.c~ Mon Dec 11 16:41:39 2000
+++ perl.c Mon Dec 11 16:55:39 2000
@@ -648,15 +648,12 @@
/* Now absolutely destruct everything, somehow or other, loops or no. */
last_sv_count = 0;
SvFLAGS(PL_fdpid) |= SVTYPEMASK; /* don't clean out pid table now */
- SvFLAGS(PL_strtab) |= SVTYPEMASK; /* don't clean out strtab now */
while (PL_sv_count != 0 && PL_sv_count != last_sv_count) {
last_sv_count = PL_sv_count;
sv_clean_all();
}
SvFLAGS(PL_fdpid) &= ~SVTYPEMASK;
SvFLAGS(PL_fdpid) |= SVt_PVAV;
- SvFLAGS(PL_strtab) &= ~SVTYPEMASK;
- SvFLAGS(PL_strtab) |= SVt_PVHV;
AvREAL_off(PL_fdpid); /* no surviving entries */
SvREFCNT_dec(PL_fdpid); /* needed in io_close() */
@@ -667,7 +664,7 @@
#endif
/* Destruct the global string table. */
- {
+ if (PL_strtab) {
/* Yell and reset the HeVAL() slots that are still holding refcounts,
* so that sv_free() won't fail on them.
*/
--- ../perlio/intrpvar.h Sun Dec 10 15:08:33 2000
+++ intrpvar.h Mon Dec 11 16:45:06 2000
@@ -52,7 +52,7 @@
/* This value may be set when embedding for full cleanup */
/* 0=none, 1=full, 2=full with checks */
-PERLVARI(Iperl_destruct_level, int, 0)
+PERLVAR(Iperl_destruct_level, int)
/* magical thingies */
PERLVAR(Ibasetime, Time_t) /* $^T */
------- End of Forwarded Message |
From @gsarOn Fri, 09 Feb 2001 11:15:47 EST, "Stephen P. Potter" wrote:
IIRC, this person wasn't building it with MULTIPLICITY/USE_ITHREADS.
This is an important optimization in the non-MULTIPLICITY case, because In the MULTIPLICITY/USE_ITHREADS case, perl_construct() will set Sarathy |
From @AlanBurlison"Stephen P. Potter" wrote:
Patch causes SEGV: core 'core' of 249773: ./miniperl configpm configpm.tmp Alan Burlison |
From [Unknown Contact. See original ticket]Alan Burlison <Alan.Burlison@uk.sun.com> writes:
I meant to say I thought we fixed that one another way.
|
From @smpetersIt looks like this old memory leak still exists. Included is my ==18586== |
From @gannett-ggreerAfter tweaking the C++ program source somewhat to compile under Ubuntu Source attached. I compiled with: g++ -g `perl -MExtUtils::Embed -e ccopts -e ldopts` -DCRLDEBUG Ubuntu's Perl is: Summary of my perl5 (revision 5 version 10 subversion 1) configuration: -- |
From @gannett-ggreer |
From @iabynThe OP's code is creating multiple interpreters, and thus needs to |
@iabyn - Status changed from 'open' to 'resolved' |
From @iabynforgot the code: /* compile with PerlInterpreter *my_perl; int main(int argc, char** argv, char** env) |
Migrated from rt.perl.org#1917 (status was 'resolved')
Searchable as RT1917$
The text was updated successfully, but these errors were encountered: