alt-ostree/alt/common/consts.py
2024-11-18 17:40:01 +03:00

8 lines
154 B
Python

import multiprocessing
ENV_WORK_DIR = "ALT_OSTREE_WORK_DIR"
PROC_N_MIN = 1
PROC_N_DEFAULT = multiprocessing.cpu_count()
PROC_N_MAX = PROC_N_DEFAULT * 2