src/nighthawk.cc@120: struct FILE has no member named '_fileno'
src/nighthawk.cc@120: LOCK_EX undeclared
src/nighthawk.cc@120: implicit declaration of function 'int flock()'
I think I've sorted the problem by changing the function I
use within to lock a file - I've decided to use lockf()
instead of flock, as it basically does the same thing, but
may probably be found in more UNIX varieties, including BSD.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=605411
I think I've sorted the problem by changing the function I
use within to lock a file - I've decided to use lockf()
instead of flock, as it basically does the same thing, but
may probably be found in more UNIX varieties, including BSD.