diff options
Diffstat (limited to 'cmdline.h')
-rw-r--r-- | cmdline.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -98,6 +98,10 @@ struct cmdline { struct open_file *open_files; /** The number of open files owned by the command line. */ int nopen_files; + /** The number of files that may stay open between evaluations. */ + int persistent_fds; + /** The number of files that mau be opened during evaluations. */ + int ephemeral_fds; }; /** |