forked from fuse4x/kext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuse_sysctl.h
36 lines (31 loc) · 1017 Bytes
/
fuse_sysctl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
* Copyright (C) 2006-2008 Google. All Rights Reserved.
* Amit Singh <singh@>
*/
#ifndef _FUSE_SYSCTL_H_
#define _FUSE_SYSCTL_H_
extern int32_t fuse_admin_group;
extern int32_t fuse_allow_other;
extern int32_t fuse_fh_current;
extern uint32_t fuse_fh_reuse_count;
extern uint32_t fuse_fh_upcall_count;
extern uint32_t fuse_fh_zombies;
extern int32_t fuse_iov_credit;
extern int32_t fuse_iov_current;
extern uint32_t fuse_iov_permanent_bufsize;
extern uint32_t fuse_lookup_cache_hits;
extern uint32_t fuse_lookup_cache_misses;
extern uint32_t fuse_lookup_cache_overrides;
extern uint32_t fuse_max_tickets;
extern uint32_t fuse_max_freetickets;
extern int32_t fuse_mount_count;
extern int32_t fuse_realloc_count;
extern int32_t fuse_tickets_current;
extern uint32_t fuse_userkernel_bufsize;
extern int32_t fuse_vnodes_current;
#ifdef FUSE_COUNT_MEMORY
extern int32_t fuse_memory_allocated;
#endif
extern void fuse_sysctl_start(void);
extern void fuse_sysctl_stop(void);
#endif /* _FUSE_SYSCTL_H_ */