summaryrefslogtreecommitdiff
path: root/android/system/StructFlock.java
diff options
context:
space:
mode:
Diffstat (limited to 'android/system/StructFlock.java')
-rw-r--r--android/system/StructFlock.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/android/system/StructFlock.java b/android/system/StructFlock.java
index 92cd95ab..0d934250 100644
--- a/android/system/StructFlock.java
+++ b/android/system/StructFlock.java
@@ -26,22 +26,22 @@ import libcore.util.Objects;
* @hide
*/
public final class StructFlock {
- /** The operation type, one of F_RDLCK, F_WRLCK, or F_UNLCK. */
- public short l_type;
+ /** The operation type, one of F_RDLCK, F_WRLCK, or F_UNLCK. */
+ public short l_type;
- /** How to interpret l_start, one of SEEK_CUR, SEEK_END, SEEK_SET. */
- public short l_whence;
+ /** How to interpret l_start, one of SEEK_CUR, SEEK_END, SEEK_SET. */
+ public short l_whence;
- /** Start offset. */
- public long l_start; /*off_t*/
+ /** Start offset. */
+ public long l_start; /*off_t*/
- /** Byte count to operate on. */
- public long l_len; /*off_t*/
+ /** Byte count to operate on. */
+ public long l_len; /*off_t*/
- /** Process blocking our lock (filled in by F_GETLK, otherwise unused). */
- public int l_pid; /*pid_t*/
+ /** Process blocking our lock (filled in by F_GETLK, otherwise unused). */
+ public int l_pid; /*pid_t*/
- @Override public String toString() {
- return Objects.toString(this);
- }
+ @Override public String toString() {
+ return Objects.toString(this);
+ }
}