Stop daemon when calcurse enters interactive mode.
This commit is contained in:
19
src/dmon.c
19
src/dmon.c
@@ -1,4 +1,4 @@
|
||||
/* $calcurse: dmon.c,v 1.3 2009/07/26 12:47:15 culot Exp $ */
|
||||
/* $calcurse: dmon.c,v 1.4 2009/07/26 20:38:36 culot Exp $ */
|
||||
|
||||
/*
|
||||
* Calcurse - text-based organizer
|
||||
@@ -180,3 +180,20 @@ dmon_start (int parent_exit_status)
|
||||
(void)io_fprintln (path_dmon_log, _("awakened at %s\n"), nowstr ());
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Check if calcurse is running in background, and if yes, send a SIGINT
|
||||
* signal to stop it.
|
||||
*/
|
||||
void
|
||||
dmon_stop (void)
|
||||
{
|
||||
int dpid;
|
||||
|
||||
dpid = io_get_pid (path_dpid);
|
||||
if (!dpid)
|
||||
return;
|
||||
|
||||
if (kill ((pid_t)dpid, SIGINT) < 0)
|
||||
EXIT (_("Could not stop calcurse daemon: %s\n"), strerror (errno));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user