Update of /cvsroot/linuxconsole/ruby/ruby-2.6/include/linux
In directory sc8-pr-cvs1:/tmp/cvs-serv18410/ruby-2.6/include/linux
Modified Files:
vt_kern.h
Log Message:
vt_list instead vt_cons for future release_vt()
Index: vt_kern.h
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/ruby-2.6/include/linux/vt_kern.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- vt_kern.h 29 Sep 2003 08:50:56 -0000 1.4
+++ vt_kern.h 28 Oct 2003 07:14:53 -0000 1.5
@@ -240,13 +240,13 @@
unsigned int first_vc;
unsigned int vc_count;
struct vc_data *vc_cons[MAX_NR_USER_CONSOLES]; /* VT's VC pool */
- struct vt_struct *next;
+ struct list_head node;
struct proc_dir_entry *procdir;
unsigned char vt_ledstate;
unsigned char vt_ledioctl;
};
-extern struct vt_struct *vt_cons;
+extern struct list_head vt_list;
extern struct vt_struct *admin_vt;
/* universal VT emulation functions */
|