sys/resource: fix nxstyle warning

Signed-off-by: chao.an <anchao@xiaomi.com>
This commit is contained in:
chao.an 2020-11-09 12:09:34 +08:00 committed by David Sidrane
parent 82f1263db9
commit 06d93828af

View File

@ -63,7 +63,7 @@
#define RUSAGE_CHILDREN 1 /* Returns information about children of
* the current process */
/* Possible values for the resource argument of getrlimit() and setrlimit(): */
/* Possible values for the resource argument of getrlimit() and setrlimit() */
#define RLIMIT_CORE 1 /* Limit on size of core dump file */
#define RLIMIT_CPU 2 /* Limit on CPU time per process. */
@ -89,8 +89,8 @@
* Type Definitions
****************************************************************************/
/* All resource limits are represented with this type. It must be an unsigned
* integral type.
/* All resource limits are represented with this type.
* It must be an unsigned integral type.
*/
typedef uint32_t rlim_t;