From af7878c7474de2f6c5542ad52a0a67237387c638 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 12 Nov 2017 15:16:23 -0500 Subject: cmdline: Account for files opened during/between evaluations more carefully --- cmdline.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cmdline.h') diff --git a/cmdline.h b/cmdline.h index e9731f9..09500ce 100644 --- a/cmdline.h +++ b/cmdline.h @@ -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; }; /** -- cgit v1.2.3