Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^3: Program Hangs

by AnomalousMonk (Archbishop)
on Dec 05, 2010 at 10:20 UTC ( [id://875478]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Program Hangs
in thread Program Hangs

Using "use strict" command throws error "Bareword "SEEK_SET" not allowed ...

SEEK_SET is a constant imported from Fcntl (see seek, first paragraph):
    use Fcntl qw(SEEK_SET);
or
    use Fcntl qw(:seek);

Import it and restore use strict;

Update: So, WHENCE are you seeking if SEEK_SET is not defined in your program? My guess is it's the same as using 0, but that's not tested.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://875478]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-04-25 13:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found