Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2434 → Rev 2435

/branches/fs/uspace/fs/limits.h
32,19 → 32,29
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/** @addtogroup FileSystemImpl
* @{
*/
 
/**
* @file limits.h
* @brief Constants which define limits of file system capabilities.
*/
 
/* Constants which define limits of file system capabilities. */
 
#ifndef _LIMITS_H_
#define _LIMITS_H_
 
/* Number of slots in the process table for user processes. */
#define NR_PROCS 20
#define NR_PROCS 20 /**< Number of slots in the process table for user processes. */
 
#define NAME_MAX 14 /* #chars in file name */
#define NAME_MAX_EX 30 /* #chars in file name - extended versions */
#define PATH_MAX 255 /* #chars in path name */
#define OPEN_MAX 20 /* open files a process may have */
#define NAME_MAX 14 /**< #chars in file name */
#define NAME_MAX_EX 30 /**< #chars in file name - extended versions */
#define PATH_MAX 255 /**< #chars in path name */
#define OPEN_MAX 20 /**< open files a process may have */
 
#endif /* _LIMITS_H_ */
 
/**
* }
*/