fix REQ-27

This commit is contained in:
Tomoki Shirasawa
2016-03-07 18:52:08 +09:00
parent dbc778e4fa
commit 14b868907b
4 changed files with 64 additions and 41 deletions

View 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