You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
224 B

// SPDX-License-Identifier: GPL-2.0
// Copyright (c) 2020 Anton Protopopov
#ifndef __VFSSTAT_H
#define __VFSSTAT_H
enum stat_types {
S_READ,
S_WRITE,
S_FSYNC,
S_OPEN,
S_CREATE,
S_MAXSTAT,
};
#endif /* __VFSSTAT_H */