We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d8169 commit 2788ba5Copy full SHA for 2788ba5
libvips/iofuncs/configure.c
@@ -64,6 +64,38 @@ typedef struct _VipsConfigure {
64
*/
65
char *operation_unblock;
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
99
} VipsConfigure;
100
101
typedef VipsOperationClass VipsConfigureClass;
0 commit comments