-
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
win32/perlhost.h: revert changes to SETUPEXCHANGE #23144
Conversation
This was broken by 48bda52, which removed the `*` before `xptr`. Without `*`, we set our `iptr` (a class member) to a bogus pointer, and the assignment to `xptr` (which is a function parameter and hence a local variable) is effectively dead code.
I have no personal opinion (yes/no wise) on this PR/this patch, and have no opinion on what to with macro based on an IRC talk. Me, and maybe a 2nd person think that maybe-public API front end fn P5P's psuedo-fork feature doesn't call this func, neither does CPAN's ZERO HITS on p5p ML (help the website I used before covid shutdown and post covid Google refuses to index nntp.perl.org) https://groups.google.com/search?q=perl_alloc_override ZERO HITS gmcpan https://grep.metacpan.org/search?size=20&_bb=913286821&q=perl_alloc_override&qd=&qft=&qifl= TonyC has a long time suspicion ActiveState's Perl for MS IIS product uses A printable ascii string dump from my
My uneducated wild guess says, Perl-4-IIS uses a pre-fork architecture built ontop of IIS's random and self scaling thread pool and IIS's event loop and its idle loop. Also PerlIIS has to disable libc-level stdio (shared hosting/anti malware/typical daily black hat problems) . Also, very critically, PerlIIS must C level trap and intercept and prevent libperl5xx.dll from calling libc Don't know if this is true since
Many many years ago I real or someone told me OP slab API, which allocates in 4KB units, never ever will release memory back to libc/OS kernel/Ring 0. Either an actual leak in Perl Core b/c CV*--; RC==0; freeing doesn't free the OP structs b/c lack of atomics or lack of a RC struct field in the header of an op blab. It could also be a performance optimization, like how SV head and body arenas never shrink. And the So maybe Perl-4-IIS also hooks and occasionally wipes the PerlMemParse and PerlMemShare pools. P5P Public API official legal answer would be execute Other thing, hypothetical, PerlIIS is definitely a pre-docker product. Maybe it was optimized for shared hosting with a Windows API chroot jail, 2000 unique customer perl back end websites, hosted by one
Since Perl-4-IIS NEVER links with symbol So ^^^^^ is design considerations on what embedders really need feature wise if life was perfect. @bulk88 will always advocate for, or write patches to actually implement, swapping out WinPerl's memory allocator system. At runtime. With -O2 stable WinPerl. Using only CPAN XS. Default on/perma on in all build configs of WinPerl. I'll probably need to open another ticket, with some benchmarks, stack traces from inside |
This was broken by 48bda52, which removed the
*
beforexptr
. Without*
, we set ouriptr
(a class member) to a bogus pointer, and the assignment toxptr
(which is a function parameter and hence a local variable) is effectively dead code.