aboutsummaryrefslogtreecommitdiff
path: root/src/testing
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-04-30 08:17:37 +0000
committerChristian Grothoff <christian@grothoff.org>2016-04-30 08:17:37 +0000
commit95f9076a2139f5fb042b944a0658b6cda2fa35db (patch)
treeb0826a2a1dcf812e6b4450fe6b05d47cd53ae49d /src/testing
parent7746f68db77b9ca3c4aaca24ab2ce5253461240b (diff)
downloadgnunet-95f9076a2139f5fb042b944a0658b6cda2fa35db.tar.gz
gnunet-95f9076a2139f5fb042b944a0658b6cda2fa35db.zip
implementing new scheduler shutdown semantics
Diffstat (limited to 'src/testing')
-rw-r--r--src/testing/gnunet-testing.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/testing/gnunet-testing.c b/src/testing/gnunet-testing.c
index 92dd17d98..07f1560cb 100644
--- a/src/testing/gnunet-testing.c
+++ b/src/testing/gnunet-testing.c
@@ -76,7 +76,7 @@ static char *tmpfilename;
76/** 76/**
77 * Task identifier of the task that waits for stdin. 77 * Task identifier of the task that waits for stdin.
78 */ 78 */
79static struct GNUNET_SCHEDULER_Task * tid; 79static struct GNUNET_SCHEDULER_Task *tid;
80 80
81/** 81/**
82 * Peer started for '-r'. 82 * Peer started for '-r'.
@@ -228,13 +228,8 @@ static void
228stdin_cb (void *cls) 228stdin_cb (void *cls)
229{ 229{
230 int c; 230 int c;
231 const struct GNUNET_SCHEDULER_TaskContext *tc;
232 231
233 tid = NULL; 232 tid = NULL;
234 tc = GNUNET_SCHEDULER_get_task_context ();
235 if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
236 return;
237 GNUNET_assert (0 != (GNUNET_SCHEDULER_REASON_READ_READY & tc->reason));
238 c = getchar (); 233 c = getchar ();
239 switch (c) 234 switch (c)
240 { 235 {
@@ -258,7 +253,8 @@ stdin_cb (void *cls)
258 fprintf (stderr, _("Unknown command, use 'q' to quit or 'r' to restart peer\n")); 253 fprintf (stderr, _("Unknown command, use 'q' to quit or 'r' to restart peer\n"));
259 break; 254 break;
260 } 255 }
261 tid = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL, fh, 256 tid = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
257 fh,
262 &stdin_cb, NULL); 258 &stdin_cb, NULL);
263} 259}
264 260
@@ -291,9 +287,10 @@ testing_main (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg,
291 } 287 }
292 printf("ok\n%s\n", tmpfilename); 288 printf("ok\n%s\n", tmpfilename);
293 fflush(stdout); 289 fflush(stdout);
294 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &cleanup, NULL); 290 GNUNET_SCHEDULER_add_shutdown (&cleanup, NULL);
295 fh = GNUNET_DISK_get_handle_from_native (stdin); 291 fh = GNUNET_DISK_get_handle_from_native (stdin);
296 tid = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL, fh, 292 tid = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
293 fh,
297 &stdin_cb, NULL); 294 &stdin_cb, NULL);
298} 295}
299 296