Deleted Added
full compact
pty.c (13630) pty.c (13639)
1/*
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)tty_pty.c 8.2 (Berkeley) 9/23/93
1/*
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)tty_pty.c 8.2 (Berkeley) 9/23/93
34 * $Id: tty_pty.c,v 1.34 1995/12/22 15:53:53 bde Exp $
34 * $Id: tty_pty.c,v 1.35 1996/01/25 07:21:50 phk Exp $
35 */
36
37/*
38 * Pseudo-teletype Driver
39 * (Actually two drivers, requiring two entries in 'cdevsw')
40 */
41#include "pty.h" /* XXX */
42

--- 754 unchanged lines hidden (view full) ---

797 for ( i = 0 ; i<NPTY ; i++ ) {
798 void *x;
799
800 j = i / 32;
801 k = i % 32;
802 devfs_token_pts[i] =
803 devfs_add_devswf(&pts_cdevsw,i,
804 DV_CHR,0,0,0666,
35 */
36
37/*
38 * Pseudo-teletype Driver
39 * (Actually two drivers, requiring two entries in 'cdevsw')
40 */
41#include "pty.h" /* XXX */
42

--- 754 unchanged lines hidden (view full) ---

797 for ( i = 0 ; i<NPTY ; i++ ) {
798 void *x;
799
800 j = i / 32;
801 k = i % 32;
802 devfs_token_pts[i] =
803 devfs_add_devswf(&pts_cdevsw,i,
804 DV_CHR,0,0,0666,
805 "tty%c%n",j,k);
805 "tty%c%n",jnames[j],k);
806 devfs_token_ptc[i] =
807 devfs_add_devswf(&ptc_cdevsw,i,
808 DV_CHR,0,0,0666,
806 devfs_token_ptc[i] =
807 devfs_add_devswf(&ptc_cdevsw,i,
808 DV_CHR,0,0,0666,
809 "pty%c%n",j,k);
809 "pty%c%n",jnames[j],k);
810 }
811#endif
812 }
813}
814
815SYSINIT(ptcdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR_C,ptc_drvinit,NULL)
816
817
810 }
811#endif
812 }
813}
814
815SYSINIT(ptcdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR_C,ptc_drvinit,NULL)
816
817