summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.multi/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.multi/hello.c')
-rw-r--r--gdb/testsuite/gdb.multi/hello.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.multi/hello.c b/gdb/testsuite/gdb.multi/hello.c
index 2c5bee99b5c..7cc5f3c32bf 100644
--- a/gdb/testsuite/gdb.multi/hello.c
+++ b/gdb/testsuite/gdb.multi/hello.c
@@ -16,6 +16,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include <stdlib.h>
+#include <unistd.h>
short hglob = 1;
@@ -37,15 +38,27 @@ hello(int x)
return x + 45;
}
+static void
+hello_loop (void)
+{
+}
+
int
main()
{
int tmpx;
+ alarm (30);
+
bar();
tmpx = hello(glob);
commonfun();
glob = tmpx;
commonfun();
-}
+ while (1)
+ {
+ hello_loop ();
+ usleep (20);
+ }
+}