664b726cd3
- all TTY-related exceptions have now been merged into the regular code paths, allowing non-TTY drivers to expose TTY-like devices; - as part of this, CTTY_MAJOR is now fully managed by VFS instead of being an ugly stepchild of the TTY driver; - device styles have become completely obsolete, support for them has been removed throughout the system; same for device flags, which had already become useless a while ago; - device map open/close and I/O function pointers have lost their use, thus finally making the VFS device code actually readable; - the device-unrelated pm_setsid has been moved to misc.c; - some other small cleanup-related changes. Change-Id: If90b10d1818e98a12139da3e94a15d250c9933da
48 lines
1.7 KiB
C
48 lines
1.7 KiB
C
#ifndef __VFS_CONST_H__
|
|
#define __VFS_CONST_H__
|
|
|
|
/* Tables sizes */
|
|
#define NR_FILPS 1024 /* # slots in filp table */
|
|
#define NR_LOCKS 8 /* # slots in the file locking table */
|
|
#define NR_MNTS 16 /* # slots in mount table */
|
|
#define NR_VNODES 1024 /* # slots in vnode table */
|
|
#define NR_WTHREADS 9 /* # slots in worker thread table */
|
|
|
|
#define NR_NONEDEVS NR_MNTS /* # slots in nonedev bitmap */
|
|
|
|
/* Miscellaneous constants */
|
|
#define SU_UID ((uid_t) 0) /* super_user's uid_t */
|
|
#define SYS_UID ((uid_t) 0) /* uid_t for system processes and INIT */
|
|
#define SYS_GID ((gid_t) 0) /* gid_t for system processes and INIT */
|
|
|
|
#define FP_BLOCKED_ON_NONE 0 /* not blocked */
|
|
#define FP_BLOCKED_ON_PIPE 1 /* susp'd on pipe */
|
|
#define FP_BLOCKED_ON_LOCK 2 /* susp'd on lock */
|
|
#define FP_BLOCKED_ON_POPEN 3 /* susp'd on pipe open */
|
|
#define FP_BLOCKED_ON_SELECT 4 /* susp'd on select */
|
|
#define FP_BLOCKED_ON_OTHER 5 /* blocked on other process, check
|
|
fp_task to find out */
|
|
|
|
/* test if the process is blocked on something */
|
|
#define fp_is_blocked(fp) ((fp)->fp_blocked_on != FP_BLOCKED_ON_NONE)
|
|
|
|
#define INVALID_THREAD ((thread_t) -1) /* known-invalid thread ID */
|
|
|
|
#define SYMLOOP 16
|
|
|
|
#define LABEL_MAX 16 /* maximum label size (including '\0'). Should
|
|
* not be smaller than 16 or bigger than
|
|
* M3_LONG_STRING.
|
|
*/
|
|
#define FSTYPE_MAX VFS_NAMELEN /* maximum file system type size */
|
|
|
|
/* possible select() operation types; read, write, errors */
|
|
#define SEL_RD CDEV_OP_RD
|
|
#define SEL_WR CDEV_OP_WR
|
|
#define SEL_ERR CDEV_OP_ERR
|
|
#define SEL_NOTIFY CDEV_NOTIFY /* not a real select operation */
|
|
|
|
/* special driver endpoint for CTTY_MAJOR; must be able to pass isokendpt() */
|
|
#define CTTY_ENDPT VFS_PROC_NR
|
|
|
|
#endif
|