StructStatVfs.java revision 5d930cadc8f62aee5f18e7921296fe66a54f18ab
1/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.system;
18
19/**
20 * File information returned by fstatvfs(2) and statvfs(2).
21 *
22 * @hide
23 */
24public final class StructStatVfs extends libcore.io.StructStatVfs {
25  public StructStatVfs(long f_bsize, long f_frsize, long f_blocks, long f_bfree, long f_bavail,
26                       long f_files, long f_ffree, long f_favail,
27                       long f_fsid, long f_flag, long f_namemax) {
28    super(f_bsize, f_frsize, f_blocks, f_bfree, f_bavail,
29          f_files, f_ffree, f_favail,
30          f_fsid, f_flag, f_namemax);
31  }
32}
33