/
ianwarets
/
load_testing_tool
Обзор
Документация
Войти
/
ianwarets
/
load_testing_tool
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
include/main.h
27 строк
613 B
Ianwarets
Modifications for unix build and run.
15 окт 2019, 11:18
15 окт 2019, 11:18
9e335ad
Код
Авторство
О чём код?
#include <stdio.h> #include <string.h> #include <ctype.h> #include <stdlib.h> #include <pthread.h> #include <error.h> #include "test_plan.h" #include "logger.h" #include <errno.h> void print_help(); typedef struct action_statistics{ wchar_t * name; unsigned int running; unsigned int pending_run; unsigned int stopped; unsigned int pending_stop; unsigned int failed; unsigned int thr_count; unsigned int thr_run; } action_stats_data; typedef struct actions_statistics{ action_stats_data * statistics; unsigned int count; } actions_stats_data;