/
niceSOFT
/
dovecot
Обзор
Документация
Войти
/
niceSOFT
/
dovecot
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/lib/cpu-count.h
9 строк
272 B
Aki Tuomi
lib: Add cpu-count.{h,c} to get number of CPUs in system
31 янв 2024, 15:17
31 янв 2024, 15:17
0bddb73
Код
Авторство
О чём код?
#ifndef CPU_COUNT_H #define CPU_COUNT_H /* Determines number of CPUs in the system and places it in * cpu_count_r. On success 0 is returned, on failure, -1 * is returned and error placed in error_r. */ int cpu_count_get(int *cpu_count_r, const char **error_r); #endif