Re: [PATCH] allow use threads qw(yield)
[p5sagit/p5-mst-13.2.git] / ext / ByteLoader / ByteLoader.pm
CommitLineData
b295d113 1package ByteLoader;
2
9426adcd 3use XSLoader ();
b295d113 4
059a8bb7 5$VERSION = 0.04;
b295d113 6
9426adcd 7XSLoader::load 'ByteLoader', $VERSION;
b295d113 8
9# Preloaded methods go here.
10
111;
12__END__
13
14=head1 NAME
15
16ByteLoader - load byte compiled perl code
17
18=head1 SYNOPSIS
19
059a8bb7 20 use ByteLoader 0.04;
b295d113 21 <byte code>
22
059a8bb7 23 use ByteLoader 0.04;
b295d113 24 <byte code>
25
26=head1 DESCRIPTION
27
28This module is used to load byte compiled perl code. It uses the source
29filter mechanism to read the byte code and insert it into the compiled
30code at the appropriate point.
31
32=head1 AUTHOR
33
34Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
35
36=head1 SEE ALSO
37
38perl(1).
39
40=cut