chore: amend some comments

This commit is contained in:
Paul Pan 2024-01-01 17:32:32 +08:00
parent 355619e85d
commit 2765fe0b3d

View File

@ -40,6 +40,6 @@ void setup_rlimit(char *config[CFG_IS_VALID + 1]) {
}
SET_LIMIT(RLIMIT_AS, mem_limit, "memory", "bytes");
SET_LIMIT(RLIMIT_NPROC, nproc_limit, "nproc", "processes"); // per user
SET_LIMIT(RLIMIT_NPROC, nproc_limit, "nproc", "processes"); // per user, **not** subprocess
SET_LIMIT(RLIMIT_CPU, time_limit, "time", "seconds"); // except blocked time
}