Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
ext /
DynaLoader /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:38
hints
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
DynaLoader.c
15.51
KB
-rw-r--r--
2016-10-10 17:38
DynaLoader.o
9.58
KB
-rw-r--r--
2016-10-10 17:38
DynaLoader.pm
24.99
KB
-rw-r--r--
2016-10-10 17:38
DynaLoader.xs
7.56
KB
-r--r--r--
2016-10-10 17:38
DynaLoader_pm.PL
31.78
KB
-r--r--r--
2014-12-27 11:49
Makefile
29.67
KB
-rw-r--r--
2016-10-10 17:38
Makefile.PL
1.6
KB
-r--r--r--
2014-12-27 11:49
README
2
KB
-r--r--r--
2014-12-27 11:48
dl_aix.xs
18.29
KB
-r--r--r--
2014-12-27 11:49
dl_dllload.xs
5.89
KB
-r--r--r--
2014-12-27 11:49
dl_dlopen.xs
7.56
KB
-r--r--r--
2014-12-27 11:49
dl_dyld.xs
5.47
KB
-r--r--r--
2014-12-27 11:49
dl_freemint.xs
5.9
KB
-r--r--r--
2014-12-27 11:49
dl_hpux.xs
4.97
KB
-r--r--r--
2014-12-27 11:49
dl_next.xs
7.61
KB
-r--r--r--
2014-12-27 11:49
dl_none.xs
272
B
-r--r--r--
2014-12-27 11:48
dl_symbian.xs
5.2
KB
-r--r--r--
2014-12-27 11:49
dl_vms.xs
12.85
KB
-r--r--r--
2014-12-27 11:49
dl_win32.xs
4.68
KB
-r--r--r--
2014-12-27 11:49
dlutils.c
3.63
KB
-r--r--r--
2014-12-27 11:49
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:38
Save
Rename
Perl 5 DynaLoader See DynaLoader.pm for detailed specification. This module is very similar to the other Perl 5 modules except that Configure selects which dl_*.xs file to use. After Configure has been run the Makefile.PL will generate a Makefile which will run xsubpp on a specific dl_*.xs file and write the output to DynaLoader.c After that the processing is the same as any other module. Note that, to be effective, the DynaLoader module must be _statically_ linked into perl! Configure should arrange this. This interface is based on the work and comments of (in no particular order): Larry Wall, Robert Sanders, Dean Roehrich, Jeff Okamoto, Anno Siegel, Thomas Neumann, Paul Marquess, Charles Bailey and others. The dl_*.xs files should either be named after the dynamic linking operating system interface used if that interface is available on more than one type of system, e.g.: dlopen for dlopen()/dlsym() type functions (SunOS, BSD) or else the osname, e.g., hpux, next, vms etc. Both are determined by Configure and so only those specific names that Configure knows/uses will work. If porting the DynaLoader to a platform that has a core dynamic linking interface similar to an existing generic type, e.g., dlopen, please try to port the corresponding dl_*.xs file (using #ifdef's if required). Otherwise, or if that proves too messy, create a new dl_*.xs file named after your osname. Configure will give preference to a dl_$osname.xs file if one exists. The file dl_dlopen.xs is a reference implementation by Paul Marquess which is a good place to start if porting from scratch. The dlutils.c file holds some common definitions that are #included into the dl_*.xs files. After the initial implementation of a new DynaLoader dl_*.xs file you may need to edit or create ext/MODULE/MODULE.bs files (library bootstrap files) to reflect the needs of your platform and linking software. Refer to DynaLoader.pm, lib/ExtUtils/MakeMaker.pm and any existing ext/MODULE/MODULE.bs files for more information. Tim Bunce. August 1994