5 Fcntl - load the C Fcntl.h defines
10 use Fcntl qw(:DEFAULT :flock);
14 This module is just a translation of the C F<fnctl.h> file.
15 Unlike the old mechanism of requiring a translated F<fnctl.ph>
16 file, this uses the B<h2xs> program (see the Perl source distribution)
17 and your native C compiler. This means that it has a
18 far more likely chance of getting the numbers right.
22 Only C<#define> symbols get translated; you must still correctly
23 pack up your own arguments to pass as args for locking functions, etc.
25 =head1 EXPORTED SYMBOLS
27 By default your system's F_* and O_* constants (eg, F_DUPFD and O_CREAT)
28 are exported into your namespace. You can request that the flock()
29 constants (LOCK_SH, LOCK_EX, LOCK_NB and LOCK_UN) be provided by using
30 the tag C<:flock>. See L<Exporter>.
32 Please refer to your native fcntl() and open() documentation to see
33 what constants are implemented in your system.
37 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $AUTOLOAD);
41 @ISA = qw(Exporter DynaLoader);
43 # Items to export into callers namespace by default
44 # (move infrequently used names to @EXPORT_OK below)
47 F_DUPFD F_GETFD F_GETLK F_SETFD F_GETFL F_SETFL F_SETLK F_SETLKW
48 FD_CLOEXEC F_RDLCK F_UNLCK F_WRLCK
49 O_CREAT O_EXCL O_NOCTTY O_TRUNC
52 O_RDONLY O_RDWR O_WRONLY
53 O_EXLOCK O_SHLOCK O_ASYNC O_DSYNC O_RSYNC O_SYNC
57 # Other items we are prepared to export if requested
59 LOCK_SH LOCK_EX LOCK_NB LOCK_UN
61 # Named groups of exports
63 'flock' => [qw(LOCK_SH LOCK_EX LOCK_NB LOCK_UN)],
68 ($constname = $AUTOLOAD) =~ s/.*:://;
69 my $val = constant($constname, @_ ? $_[0] : 0);
71 if ($! =~ /Invalid/) {
72 $AutoLoader::AUTOLOAD = $AUTOLOAD;
73 goto &AutoLoader::AUTOLOAD;
76 my ($pack,$file,$line) = caller;
77 die "Your vendor has not defined Fcntl macro $constname, used at $file line $line.
81 eval "sub $AUTOLOAD { $val }";
85 bootstrap Fcntl $VERSION;