/
niceSOFT
/
libuv
Обзор
Документация
Войти
/
niceSOFT
/
libuv
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.x
docs/code/thread-create/main.c
35 строк
788 B
Jiawen Geng
doc: make sample cross-platform build (#3592)
11 апр 2022, 04:52
Не верифицирован
11 апр 2022, 04:52
a786715
Код
Авторство
О чём код?
#include <stdio.h> #include <uv.h> void hare(void *arg) { int tracklen = *((int *) arg); while (tracklen) { tracklen--; uv_sleep(1000); fprintf(stderr, "Hare ran another step\n"); } fprintf(stderr, "Hare done running!\n"); } void tortoise(void *arg) { int tracklen = *((int *) arg); while (tracklen) { tracklen--; fprintf(stderr, "Tortoise ran another step\n"); uv_sleep(3000); } fprintf(stderr, "Tortoise done running!\n"); } int main() { int tracklen = 10; uv_thread_t hare_id; uv_thread_t tortoise_id; uv_thread_create(&hare_id, hare, &tracklen); uv_thread_create(&tortoise_id, tortoise, &tracklen); uv_thread_join(&hare_id); uv_thread_join(&tortoise_id); return 0; }