Modifier and Type | Field and Description |
---|---|
long |
l_len
Byte count to operate on.
|
int |
l_pid
Process blocking our lock (filled in by F_GETLK, otherwise unused).
|
long |
l_start
Start offset.
|
short |
l_type
The operation type, one of F_RDLCK, F_WRLCK, or F_UNLCK.
|
short |
l_whence
How to interpret l_start, one of SEEK_CUR, SEEK_END, SEEK_SET.
|
Constructor and Description |
---|
StructFlock() |
public short l_type
public short l_whence
public long l_start
public long l_len
public int l_pid
public String toString()
Object
toString
method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString
method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@
', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())