File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,38 @@ typedef struct _VipsConfigure {
64
64
*/
65
65
char * operation_unblock ;
66
66
67
+ /* Enable leak reporting.
68
+ */
69
+ gboolean leak ;
70
+
71
+ /* Enable profiling
72
+ */
73
+ gboolean profile ;
74
+
75
+ /* Threadpool size.
76
+ */
77
+ int concurrency ;
78
+
79
+ /* Max size of pipe.
80
+ */
81
+ int64 pipe_read_limit ;
82
+
83
+ /* Trace libvips operation cache actions.
84
+ */
85
+ gboolean cache_trace ;
86
+
87
+ /* Number of recent operations to cache.
88
+ */
89
+ int cache_max ;
90
+
91
+ /* Maximum memory to use for operation caching.
92
+ */
93
+ int64 cache_max_mem ;
94
+
95
+ /* Maximum number of open files we allow in the cache.
96
+ */
97
+ int cache_max_files ;
98
+
67
99
} VipsConfigure ;
68
100
69
101
typedef VipsOperationClass VipsConfigureClass ;
You can’t perform that action at this time.
0 commit comments