packages/utils/smstools3/patches/004-modem-processes.patch
Ilya Lipnitskiy 5d8d4fbbcb
treewide: Run refresh on all packages
The crude loop I wrote to come up with this changeset:

  find -L package/feeds/packages/ -name patches | \
  sed 's/patches$/refresh/' | sort | xargs make

Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
2021-02-20 16:02:15 -08:00

24 lines
670 B
Diff

commit 3790bd05ed86b1692719df22857ef76c1293b01c
Author: Harald Geyer <harald@ccbib.org>
Date: Sun Feb 18 19:24:48 2018 +0100
Make modem processes terminate when main process dies
--- a/src/smsd.c
+++ b/src/smsd.c
@@ -34,6 +34,7 @@ Either version 2 of the License, or (at
#ifndef DISABLE_INOTIFY
#include <sys/inotify.h>
#endif
+#include <sys/prctl.h>
#include "extras.h"
#include "locking.h"
@@ -8100,6 +8101,7 @@ int main(int argc,char** argv)
if (pid == 0)
{
+ prctl(PR_SET_PDEATHSIG, SIGTERM, 0, 0, 0);
process_id = i;
strcpy(process_title, DEVICE.name);
apply_process_name(argc, argv, process_title);