]>
git.saurik.com Git - apple/xnu.git/blob - bsd/dev/ppc/cons.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1987, 1988 NeXT, Inc.
26 * 7-Jan-93 Mac Gillon (mgillon) at NeXT
27 * Integrated POSIX support
29 * 12-Aug-87 John Seamons (jks) at NeXT
34 * Indirect driver for console.
36 #include <sys/param.h>
37 #include <sys/systm.h>
39 #include <sys/ioctl.h>
43 #include <dev/ppc/cons.h>
46 struct tty
*constty
; /* current console device */
50 consopen(dev
, flag
, devtype
, pp
)
58 device
= constty
->t_dev
;
61 return ((*cdevsw
[major(device
)].d_open
)(device
, flag
, devtype
, pp
));
66 consclose(dev
, flag
, mode
, pp
)
74 device
= constty
->t_dev
;
77 return ((*cdevsw
[major(device
)].d_close
)(device
, flag
, mode
, pp
));
82 consread(dev
, uio
, ioflag
)
90 device
= constty
->t_dev
;
93 return ((*cdevsw
[major(device
)].d_read
)(device
, uio
, ioflag
));
98 conswrite(dev
, uio
, ioflag
)
106 device
= constty
->t_dev
;
109 return ((*cdevsw
[major(device
)].d_write
)(device
, uio
, ioflag
));
114 consioctl(dev
, cmd
, addr
, flag
, p
)
124 device
= constty
->t_dev
;
128 * Superuser can always use this to wrest control of console
129 * output from the "virtual" console.
131 if (cmd
== TIOCCONS
&& constty
) {
132 int error
= suser(p
->p_ucred
, (u_short
*) NULL
);
138 return ((*cdevsw
[major(device
)].d_ioctl
)(device
, cmd
, addr
, flag
, p
));
143 consselect(dev
, flag
, p
)
151 device
= constty
->t_dev
;
154 return ((*cdevsw
[major(device
)].d_select
)(device
, flag
, p
));
163 device
= constty
->t_dev
;
166 return ((*cdevsw
[major(device
)].d_getc
)(device
));
177 device
= constty
->t_dev
;
180 return ((*cdevsw
[major(device
)].d_putc
)(device
, c
));
184 * Write message to console; create an alert panel if no text-type window
185 * currently exists. Caller must call alert_done() when finished.
186 * The height and width arguments are not used; they are provided for
187 * compatibility with the 68k version of alert().
206 sprintf(smsg
, msg
, p1
, p2
, p3
, p4
, p5
, p6
, p7
, p8
);
208 /* DoAlert(title, smsg); */