Tagged Questions
The fcntl tag has no wiki summary.
8
votes
3answers
3k views
Get hard disk serial number using Python on Linux
How can I get serial number of hard disk drive using Python code on Linux?
I want to do this using a python module, not running external program such as hdparm etc.
Perhaps I could use the fcntl ...
5
votes
1answer
223 views
Can I get fcntl and Perl alarms to cooperate?
I'm on linux, nfs, with multiple machines involved.
I'm trying to use fcntl to implement filelocking. I was using flock until I discovered it only works between processes on the same machine.
Now ...
5
votes
3answers
2k views
Where is flock() for Perl on Windows?
I have a Perl script that I'd like to run on Windows, using either Strawberry Perl or ActivePerl; I don't care which. This script however, uses flock() calls, which does not seem to be included in ...
3
votes
2answers
54 views
What is the order in which a POSIX system clears the file locks that were not unlocked cleanly?
The POSIX specification for fcntl() states:
All locks associated with a file for a given process shall be removed when a file descriptor for that file is closed by that process or the process ...
3
votes
3answers
102 views
redirecting standard output in c then resetting standard output
I'm trying to use redirects in C to redirect input to one file and then set standard output back to print to the screen. Could someone tell me what's wrong with this code?
#include <stdio.h>
...
3
votes
1answer
179 views
Utility that helps in file locking - expert tips wanted
I've written a subclass of file that a) provides methods to conveniently lock it (using fcntl, so it only supports unix, which is however OK for me atm) and b) when reading or writing asserts that the ...
2
votes
2answers
284 views
No module named fcntl
I am trying to execute this method with IronPython on .NET 4.0 using IronPython 2.7. i am using Windows 7
import os
import re
import nltk
import urllib
import xapian
import sys
def getData(url):
...
2
votes
1answer
977 views
Is O_NONBLOCK being set a property of the file descriptor or underlying file?
From what I have been reading on The Open Group website on fcntl, open, read, and write, I get the impression that whether O_NONBLOCK is set on a file descriptor, and hence whether non-blocking I/O is ...
2
votes
1answer
526 views
Shared mmap co-ordination using fcntl locks?
When using mmap() for shared memory (from Linux, or other UNIX-like systems) is it possible (and portable) to use fcntl() (or flock() or lockf() functions) to co-ordinate access to the mapping?
...
2
votes
2answers
595 views
fcntl() for thread or process synchronization?
Is it possible to use fcntl() system call on a file to achieve thread/process synchronization (instead of semaphoress)?
1
vote
2answers
93 views
Is there a way to know how much data is available in a Python socket to receive?
I have figured out that I must use ioctl. There are similar questions here:
How to tell how much data is in a Socket's send buffer
Determing the number of bytes ready to be recv()'d
My ...
1
vote
1answer
78 views
Changing mp4ize.py to work on Windows
Mp4ize (python) is a utility for converting video files to mp4 for use on iPhone and iPod. I'm trying to get it to run on Windows.
The python script relies on the library fcntl, and according to ...
1
vote
1answer
43 views
Fcntl() question about process id
I am debugging some code and there is l_pid = 0 always for setting file locks.. It seems odd to me.. Is this correct?Documentation doesnt say about 0 zero value ..
1
vote
1answer
102 views
MACOSX (BSD) equivalent for F_NOTIFY flag for fcntl() function
Does anybody know equivalent for F_NOTIFY flag for fcntl function.
This flag allow to receive notifications about file events
(for example file opened, file closed, bytes write to file, bytes read ...
1
vote
1answer
253 views
fcntl.h doesn't contain all status flag constants
I have been going through header files and I'm not able to find any file with status flag definitions (like O_RDONLY).
Thanks,
John
1
vote
2answers
184 views
fcntl not working
I have a small program that tires to change the files access mode after it has been opened.
int main(int argc, char* argv[])
{
int fd;
char *filename = argv[1];
char data[1];
int ...
1
vote
2answers
115 views
Uninterruptible read/write calls
At some point during my C programming adventures on Linux, I encountered flags (possibly ioctl/fcntl?), that make reads and writes on a file descriptor uninterruptible.
Unfortunately I cannot recall ...
1
vote
2answers
347 views
Problems compiliing c++ code using cygwin
I am trying to compile some source code in cygwin (in windows 7)
and get the following error when I run the make file
g++ -DHAVE_CONFIG_H -I. -I.. -I.. -Wall -Wextra -Werror -g -O2 -MT libcommon_a ...
1
vote
3answers
273 views
No manual entry for fcntl problem
When I use `man fcntl' got the message:
No manual entry for fcntl
which the pkg is needed to install?
ps. I use debian.
1
vote
3answers
2k views
linux fcntl - unsetting flag
How do i unset a already set flag using fcntl?
For e.g. I can set the socket to nonblocking mode using
fcntl(sockfd, F_SETFL, flags | O_NONBLOCK)
Now, i want to unset the O_NONBLOCK flag.
I ...
0
votes
2answers
37 views
What would be the right fcntl flags?
What would be the right fcntl flags when reading from a disk and writing to a file over the network for best speed?
perhaps the issues is with the fcntl flags set on the file descriptor?
0
votes
2answers
180 views
multi pipes in C
I am trying to implement multiple pipes in C,
the solution should be both for:
cmd1 | cmd2 | cmd3
and for:
|--- cmd2
cmd1 |--- cmd3
|--- cmd4
#include <stdio.h>
...
0
votes
1answer
53 views
link error with fcntl in macos
There is a code sinppet using fcntl, but it goes into trouble when linking:
#include <poll.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include ...
0
votes
1answer
108 views
Library `fcntl' can not be loaded on Solaris/Weblogic (JRuby 1.6.1) -> NullPointerException
While trying to deploy a JRuby/Rails Application to a Weblogic 10.3 (Solaris Zone) container it always encounters this exception:
org.jruby.rack.RackInitializationException: library `fcntl' could not ...
0
votes
3answers
164 views
C fcntl abstraction function doesn't work, why?
I'm writting an app and its in the specification that I need to lock
a file everytime I write on it (this file will be read for other apps
that other team is working on):
I made the following ...
0
votes
1answer
101 views
Ignoring comment lines marked with “%” using open() in C on linux
I am trying to read a file which has the first two lines marked with a "%" as the first character. I need to ignore these two lines, and then read 4 separate integer variables, separated by an ...
0
votes
1answer
763 views
flock() question
I have a question about how flock() works, particularly in python. I have a module that opens a serial connection (via os.open()). I need to make this thread safe. It's easy enough making it thread ...
0
votes
2answers
307 views
what's the purpose of fcntl with parameter F_DUPFD
I traced an oracle process, and find it first open a file /etc/netconfig as file handle 11, and then duplicate it as 256 by calling fcntl with parameter F_DUPFD, and then close the original file ...
0
votes
1answer
472 views
File r/w locking and unlink
I have following problem. I want to create a file system based session storage where each session data is stored in simple file named with session ids.
I want following API: write(sid,data,timeout), ...
0
votes
1answer
652 views
fcntl issues compiling C++
{net04:~/xxxx/wip} gcc -o write_test write_test.c
In file included from write_test.c:4:
global.h:10: warning: `b' initialized and declared `extern'
This code uses fcntl.h and the file-handling ...
0
votes
1answer
209 views
When will fcntl in solaris return a value less then -1 for F_SETLKW
Fromt he Mannul of fcntl in solaris, Upon successful completion, value returned for F_SETLKW will be "Value other than -1".
But Apache httpd 1.3.41 source code (http_main.c) check if the returned ...