mirror of
https://github.com/Estom/notes.git
synced 2026-04-24 10:34:11 +08:00
36 lines
718 B
C
36 lines
718 B
C
/*
|
|
* @Author: jiejie
|
|
* @Github: https://github.com/jiejieTop
|
|
* @Date: 2020-04-17 19:44:48
|
|
* @LastEditTime: 2020-04-18 09:46:21
|
|
* @Description: the code belongs to jiejie, please keep the author information and source code according to the license.
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <uv.h>
|
|
|
|
int64_t num = 0;
|
|
|
|
void my_idle_cb(uv_idle_t* handle)
|
|
{
|
|
num++;
|
|
if (num >= 10e6) {
|
|
printf("idle stop, num = %ld\n", num);
|
|
uv_idle_stop(handle);
|
|
}
|
|
}
|
|
|
|
int main()
|
|
{
|
|
uv_idle_t idler;
|
|
|
|
uv_idle_init(uv_default_loop(), &idler);
|
|
|
|
printf("idle start, num = %ld\n", num);
|
|
uv_idle_start(&idler, my_idle_cb);
|
|
|
|
uv_run(uv_default_loop(), UV_RUN_DEFAULT);
|
|
|
|
return 0;
|
|
}
|