|
lsof on HPUX is called fuser. It does not report locked files. In order to find locked files, you have to open() files then try lockf() in C code.
AFAIK HPUX systems only have mandatory file locking on Regular files with the file mode of S_ENFMT.
What are your trying to accomplish?
|