diff options
author | Tim Hentenaar <tim@hentenaar.com> | 2014-10-10 01:55:14 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2014-10-10 09:33:57 +0200 |
commit | 7f62fb185c2617eb308f7ca5fe8b9e18828cb772 (patch) | |
tree | c20ac5e02a8767f0959507011b9886a971a31fd4 /src/calcurse.h | |
parent | 7f06c25230db49e6a7dcf00692cc2d1bae9ec6ea (diff) | |
download | calcurse-7f62fb185c2617eb308f7ca5fe8b9e18828cb772.zip |
Let SIGUSR1 trigger a reload
In an effort to better integrate the import process with external
applications, it's desirable to have a mechanism by which external
programs can trigger a reload of calcurse's data.
This patch adds that functionality via SIGUSR1. The reload request is
handled in the main loop. When the user is currently entering data, the
request is delayed until the main loop is re-entered.
Signed-off-by: Tim Hentenaar <tim@hentenaar.com>
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/calcurse.h')
-rw-r--r-- | src/calcurse.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/calcurse.h b/src/calcurse.h index 4a6ea24..ce19183 100644 --- a/src/calcurse.h +++ b/src/calcurse.h @@ -1096,6 +1096,7 @@ extern unsigned colorize; extern int foreground, background; extern enum ui_mode ui_mode; extern int read_only; +extern int want_reload; extern const char *datefmt_str[DATE_FORMATS]; extern int days[12]; extern const char *monthnames[12]; |