summaryrefslogtreecommitdiff
path: root/toolchain/uclibc/patches/0.9.34-git/0011-get-out-of-the-endless-while-loop-when-bind-failed.patch
blob: 81fab709402f0c18ed170ce3103d0c1468292da2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From cefde9e8caac8ad05409265dcaade63843f2fc71 Mon Sep 17 00:00:00 2001
From: Waldemar Brodkorb <wbx@uclibc-ng.org>
Date: Sun, 24 Aug 2014 21:37:48 +0200
Subject: [PATCH 11/11] get out of the endless while loop, when bind failed

Signed-off-by: Waldemar Brodkorb <wbx@uclibc-ng.org>
---
 test/nptl/tst-cancel4.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/test/nptl/tst-cancel4.c b/test/nptl/tst-cancel4.c
index 53abf83..4ba4045 100644
--- a/test/nptl/tst-cancel4.c
+++ b/test/nptl/tst-cancel4.c
@@ -1015,6 +1015,8 @@ tf_accept (void *arg)
       if (++tries > 10)
 	{
 	  printf ("%s: too many unsuccessful bind calls\n", __FUNCTION__);
+	  /* prevent endless loop, when bind fails forever */
+	  exit (1);
 	}
 
       strcpy (sun.sun_path, "/tmp/tst-cancel4-socket-1-XXXXXX");
-- 
1.8.5.2 (Apple Git-48)