diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-11-12 15:16:23 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-11-12 15:16:23 -0500 |
commit | af7878c7474de2f6c5542ad52a0a67237387c638 (patch) | |
tree | 0c94e29edc66302022f0bcc2829732cfb14cde6b /cmdline.h | |
parent | 6e9f52c9a8d51cac7db3b62e799fc32072c86443 (diff) | |
download | bfs-af7878c7474de2f6c5542ad52a0a67237387c638.tar.xz |
cmdline: Account for files opened during/between evaluations more carefully
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; }; /** |