alt-ostree/alt/common/consts.py

8 lines
154 B
Python
Raw Permalink Normal View History

2024-11-08 15:29:15 +03:00
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