Subversion Repositories HelenOS

Rev

Rev 2404 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2404 Rev 2435
Line 30... Line 30...
30
 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
30
 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
31
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
31
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
32
 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
32
 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
33
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
 */
34
 */
35
 
35
 
-
 
36
/** @addtogroup FileSystemImpl
-
 
37
* @{
-
 
38
*/
36
 
39
 
-
 
40
/**
-
 
41
 * @file    limits.h
37
/* Constants which define limits of file system capabilities. */
42
 * @brief   Constants which define limits of file system capabilities.
-
 
43
 */
38
 
44
 
39
#ifndef _LIMITS_H_
45
#ifndef _LIMITS_H_
40
#define _LIMITS_H_
46
#define _LIMITS_H_
41
 
47
 
42
/* Number of slots in the process table for user processes. */
48
#define NR_PROCS    20 /**< Number of slots in the process table for user processes. */
43
#define NR_PROCS    20
-
 
44
 
49
 
45
#define NAME_MAX    14  /* #chars in file name */
50
#define NAME_MAX    14  /**< #chars in file name */
46
#define NAME_MAX_EX 30  /* #chars in file name - extended versions */
51
#define NAME_MAX_EX 30  /**< #chars in file name - extended versions */
47
#define PATH_MAX    255 /* #chars in path name */
52
#define PATH_MAX    255 /**< #chars in path name */
48
#define OPEN_MAX    20  /* open files a process may have */
53
#define OPEN_MAX    20  /**< open files a process may have */
49
 
54
 
50
#endif /* _LIMITS_H_ */
55
#endif /* _LIMITS_H_ */
-
 
56
 
-
 
57
/**
-
 
58
 * }
-
 
59
 */
-
 
60