1996-12-17 13:41:09 -04:00
|
|
|
#! /usr/bin/env python
|
|
|
|
"""Test program for the fcntl C module.
|
|
|
|
Roger E. Masse
|
|
|
|
"""
|
|
|
|
import struct
|
|
|
|
import fcntl
|
|
|
|
import FCNTL
|
|
|
|
import os
|
1996-12-20 18:36:52 -04:00
|
|
|
from test_support import verbose
|
1996-12-17 13:41:09 -04:00
|
|
|
|
|
|
|
filename = '/tmp/delete-me'
|
|
|
|
|
|
|
|
# the example from the library docs
|
|
|
|
f = open(filename,'w')
|
1997-05-12 19:15:52 -03:00
|
|
|
rv = fcntl.fcntl(f.fileno(), FCNTL.F_SETFL, os.O_NONBLOCK)
|
1996-12-17 13:41:09 -04:00
|
|
|
if verbose:
|
1997-05-12 19:15:52 -03:00
|
|
|
print 'Status from fnctl with O_NONBLOCK: ', rv
|
1996-12-17 13:41:09 -04:00
|
|
|
|
|
|
|
lockdata = struct.pack('hhllhh', FCNTL.F_WRLCK, 0, 0, 0, 0, 0)
|
|
|
|
if verbose:
|
1997-05-08 23:06:05 -03:00
|
|
|
print 'struct.pack: ', `lockdata`
|
1996-12-17 13:41:09 -04:00
|
|
|
|
|
|
|
rv = fcntl.fcntl(f.fileno(), FCNTL.F_SETLKW, lockdata)
|
|
|
|
if verbose:
|
1997-05-08 23:06:05 -03:00
|
|
|
print 'String from fcntl with F_SETLKW: ', `rv`
|
1996-12-17 13:41:09 -04:00
|
|
|
|
|
|
|
f.close()
|
|
|
|
os.unlink(filename)
|