From a1cea66a50a94bf2f371a8a1b3c3e6fc5b5db4b3 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Wed, 16 Nov 2005 18:18:52 +0000 Subject: [PATCH] Correct description of RLIMIT_CPU. Reported by: bde --- sys/sys/resource.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/resource.h b/sys/sys/resource.h index ccb21648f5e..ae3e3460ebb 100644 --- a/sys/sys/resource.h +++ b/sys/sys/resource.h @@ -83,7 +83,7 @@ struct rusage { /* * Resource limits */ -#define RLIMIT_CPU 0 /* cpu time in milliseconds */ +#define RLIMIT_CPU 0 /* maximum cpu time in seconds */ #define RLIMIT_FSIZE 1 /* maximum file size */ #define RLIMIT_DATA 2 /* data size */ #define RLIMIT_STACK 3 /* stack size */