From: James S. <jsi...@us...> - 2001-12-08 00:54:04
|
Update of /cvsroot/linuxconsole/ruby/linux/include/linux In directory usw-pr-cvs1:/tmp/cvs-serv23193/include/linux Modified Files: tty_driver.h Log Message: Almost done. Now to make the lock shared between the console layer and the tty layer. Index: tty_driver.h =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/include/linux/tty_driver.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- tty_driver.h 2001/10/08 04:27:13 1.3 +++ tty_driver.h 2001/12/08 00:54:01 1.4 @@ -131,7 +131,7 @@ int flags; /* tty driver flags */ int may_schedule; /* when we can schedule */ int *refcount; /* for loadable tty drivers */ - struct semaphore tty_lock;/* access control for printk and tty layer */ + struct semaphore *tty_lock;/* access control for printk and tty layer */ struct proc_dir_entry *proc_entry; /* /proc fs entry */ struct tty_driver *other; /* only used for the PTY driver */ |