summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/util-linux/util-linux/util-linux-ng-replace-siginterrupt.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/util-linux/util-linux/util-linux-ng-replace-siginterrupt.patch')
-rw-r--r--meta/recipes-core/util-linux/util-linux/util-linux-ng-replace-siginterrupt.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-core/util-linux/util-linux/util-linux-ng-replace-siginterrupt.patch b/meta/recipes-core/util-linux/util-linux/util-linux-ng-replace-siginterrupt.patch
deleted file mode 100644
index 6717a75a90..0000000000
--- a/meta/recipes-core/util-linux/util-linux/util-linux-ng-replace-siginterrupt.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1Upstream-Status: Pending
2
3Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
4---
5 login-utils/login.c | 5 ++++-
6 1 file changed, 4 insertions(+), 1 deletion(-)
7
8diff --git a/login-utils/login.c b/login-utils/login.c
9index ebb76f5..38c881b 100644
10--- a/login-utils/login.c
11+++ b/login-utils/login.c
12@@ -1110,6 +1110,7 @@ int main(int argc, char **argv)
13 char *buff;
14 int childArgc = 0;
15 int retcode;
16+ struct sigaction act;
17
18 char *pwdbuf = NULL;
19 struct passwd *pwd = NULL, _pwd;
20@@ -1123,7 +1124,9 @@ int main(int argc, char **argv)
21 timeout = (unsigned int)getlogindefs_num("LOGIN_TIMEOUT", LOGIN_TIMEOUT);
22
23 signal(SIGALRM, timedout);
24- siginterrupt(SIGALRM, 1); /* we have to interrupt syscalls like ioctl() */
25+ (void) sigaction(SIGALRM, NULL, &act);
26+ act.sa_flags &= ~SA_RESTART;
27+ sigaction(SIGALRM, &act, NULL);
28 alarm(timeout);
29 signal(SIGQUIT, SIG_IGN);
30 signal(SIGINT, SIG_IGN);
31--
321.9.1
33