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.
|
#ifndef _LINUX_KCMP_H
|
|
#define _LINUX_KCMP_H
|
|
|
|
/* Comparison type */
|
|
enum kcmp_type {
|
|
KCMP_FILE,
|
|
KCMP_VM,
|
|
KCMP_FILES,
|
|
KCMP_FS,
|
|
KCMP_SIGHAND,
|
|
KCMP_IO,
|
|
KCMP_SYSVSEM,
|
|
|
|
KCMP_TYPES,
|
|
};
|
|
|
|
#endif /* _LINUX_KCMP_H */
|
|
|