fix REQ-27
This commit is contained in:
21
kernel/include/generic-rlimit.h
Normal file
21
kernel/include/generic-rlimit.h
Normal file
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* \file rlimit.h
|
||||
* License details are found in the file LICENSE.
|
||||
* \brief
|
||||
* Kinds of resource limit
|
||||
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
|
||||
* Copyright (C) 2011 - 2012 Taku Shimosawa
|
||||
*/
|
||||
/*
|
||||
* HISTORY
|
||||
*/
|
||||
|
||||
#ifndef __GENERIC_RLIMIT_H
|
||||
#define __GENERIC_RLIMIT_H
|
||||
|
||||
struct rlimit {
|
||||
uint64_t rlim_cur; /* Soft limit */
|
||||
uint64_t rlim_max; /* Hard limit (ceiling for rlim_cur) */
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user