diff options
Diffstat (limited to 'expr.h')
-rw-r--r-- | expr.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -192,6 +192,11 @@ struct expr { /** Optional string data for this expression. */ const char *sdata; + + /** The number of files this expression keeps open between evaluations. */ + int persistent_fds; + /** The number of files this expression opens during evaluation. */ + int ephemeral_fds; }; /** Singleton true expression instance. */ |