Exemple #1
0
int main(int argc, char *argv[])
{
    struct timespec start, curr;
    struct timers timers;
    struct list_head expired;
    struct timer t[PER_CONN_TIME];
    unsigned int i, num;
    bool check = false;

    opt_register_noarg("-c|--check", opt_set_bool, &check,
                       "Check timer structure during progress");

    opt_parse(&argc, argv, opt_log_stderr_exit);

    num = argv[1] ? atoi(argv[1]) : (check ? 100000 : 100000000);

    list_head_init(&expired);
    curr = start = time_now();
    timers_init(&timers, start);

    for (i = 0; i < num; i++) {
        curr = time_add(curr, time_from_msec(1));
        if (check)
            timers_check(&timers, NULL);
        timers_expire(&timers, curr, &expired);
        if (check)
            timers_check(&timers, NULL);
        assert(list_empty(&expired));

        if (i >= PER_CONN_TIME) {
            timer_del(&timers, &t[i%PER_CONN_TIME]);
            if (check)
                timers_check(&timers, NULL);
        }
        timer_add(&timers, &t[i%PER_CONN_TIME],
                  time_add(curr, time_from_msec(CONN_TIMEOUT_MS)));
        if (check)
            timers_check(&timers, NULL);
    }
    if (num > PER_CONN_TIME) {
        for (i = 0; i < PER_CONN_TIME; i++)
            timer_del(&timers, &t[i]);
    }

    curr = time_sub(time_now(), start);
    if (check)
        timers_check(&timers, NULL);
    timers_cleanup(&timers);
    opt_free_table();

    for (i = 0; i < ARRAY_SIZE(timers.level); i++)
        if (!timers.level[i])
            break;

    printf("%u in %lu.%09lu (%u levels / %zu)\n",
           num, (long)curr.tv_sec, curr.tv_nsec,
           i, ARRAY_SIZE(timers.level));
    return 0;
}
static void fake_sleep(int seconds)
{
	unsigned int i;

	assert(seconds == 5);
	sleeps++;
	assert(sleeps < 100);

	for (i = 0; i < ARRAY_SIZE(payments); i++) {
		if (!payments[i].complete)
			return;
	}

	/* We're done! */
	tal_free(top_ctx);
	opt_free_table();
	exit(0);
}
Exemple #3
0
/* Main: parse arguments and call IRVM entry function */
int
main (int argc, char ** argv)
{
  opt_register_table (opts, NULL);
  if (!opt_parse (&argc, argv, opt_log_stderr))
    exit (1);

  if (argc != 2)
    opt_usage_and_exit ("[OPTIONS] INPUT-FILE");
  input_fn = argv[1];
  opt_free_table ();

  if (!(yyin = fopen (input_fn, "r")))
    err (1, "could not open %s", input_fn);

  irvm ();

  return 0;
}