First import
[xorg_rtime.git] / xorg-server-1.4 / hw / xfree86 / os-support / hurd / hurd_init.c
blob8cd8f54d641a597e201511f34d4d34bab6bb8bd2
1 /*
2 * Copyright 1997,1998 by UCHIYAMA Yasushi
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation, and that the name of UCHIYAMA Yasushi not be used in
9 * advertising or publicity pertaining to distribution of the software without
10 * specific, written prior permission. UCHIYAMA Yasushi makes no representations
11 * about the suitability of this software for any purpose. It is provided
12 * "as is" without express or implied warranty.
14 * UCHIYAMA YASUSHI DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL UCHIYAMA YASUSHI BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20 * PERFORMANCE OF THIS SOFTWARE.
24 #ifdef HAVE_XORG_CONFIG_H
25 #include <xorg-config.h>
26 #endif
28 #include <X11/X.h>
30 #include "input.h"
31 #include "scrnintstr.h"
33 #include "compiler.h"
35 #include "xf86.h"
36 #include "xf86Priv.h"
37 #include "xf86_OSlib.h"
39 #include <stdio.h>
40 #include <errno.h>
41 #include <sys/time.h>
42 #include <sys/file.h>
43 #include <assert.h>
44 #include <mach.h>
46 int
47 xf86ProcessArgument( int argc,char **argv, int i )
49 return 0;
51 void
52 xf86UseMsg()
54 return;
58 void
59 xf86OpenConsole()
61 if( serverGeneration == 1 )
63 kern_return_t err;
64 mach_port_t device;
65 int fd;
66 err = get_privileged_ports( NULL, &device );
67 if( err )
69 errno = err;
70 FatalError( "xf86KbdInit can't get_privileged_ports. (%s)\n" , strerror(errno) );
72 mach_port_deallocate (mach_task_self (), device);
74 if( ( fd = open( "/dev/kbd" , O_RDONLY|O_NONBLOCK ) ) < 0 )
76 fprintf( stderr , "Cannot open keyboard (%s)\n",strerror(errno) );
77 exit(1);
79 xf86Info.consoleFd = fd;
81 return;
84 void
85 xf86CloseConsole()
87 close( xf86Info.consoleFd );
88 return;