File: main.c

package info (click to toggle)
libuv1 1.52.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 5,812 kB
  • sloc: ansic: 75,557; makefile: 676; python: 189; sh: 51; javascript: 18
file content (24 lines) | stat: -rw-r--r-- 430 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <stdio.h>
#include <uv.h>

int64_t counter = 0;

void wait_for_a_while(uv_idle_t* handle) {
    counter++;

    if (counter >= 10e6)
        uv_idle_stop(handle);
}

int main() {
    uv_idle_t idler;

    uv_idle_init(uv_default_loop(), &idler);
    uv_idle_start(&idler, wait_for_a_while);

    printf("Idling...\n");
    uv_run(uv_default_loop(), UV_RUN_DEFAULT);

    uv_loop_close(uv_default_loop());
    return 0;
}