Skip to content

Commit 2788ba5

Browse files
committed
make a note of configure settings
Add a list of the settings that still need connecting.
1 parent c8d8169 commit 2788ba5

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

libvips/iofuncs/configure.c

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,38 @@ typedef struct _VipsConfigure {
6464
*/
6565
char *operation_unblock;
6666

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+
6799
} VipsConfigure;
68100

69101
typedef VipsOperationClass VipsConfigureClass;

0 commit comments

Comments
 (0)