osinit.c revision bbe1b32b
1bbe1b32bSmrg/* $Xorg: osinit.c,v 1.4 2001/02/09 02:05:45 xorgcvs Exp $ */
2bbe1b32bSmrg/*
3bbe1b32bSmrg * os init code
4bbe1b32bSmrg */
5bbe1b32bSmrg/*
6bbe1b32bSmrgCopyright 1987, 1998  The Open Group
7bbe1b32bSmrg
8bbe1b32bSmrgPermission to use, copy, modify, distribute, and sell this software and its
9bbe1b32bSmrgdocumentation for any purpose is hereby granted without fee, provided that
10bbe1b32bSmrgthe above copyright notice appear in all copies and that both that
11bbe1b32bSmrgcopyright notice and this permission notice appear in supporting
12bbe1b32bSmrgdocumentation.
13bbe1b32bSmrg
14bbe1b32bSmrgThe above copyright notice and this permission notice shall be included in
15bbe1b32bSmrgall copies or substantial portions of the Software.
16bbe1b32bSmrg
17bbe1b32bSmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18bbe1b32bSmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19bbe1b32bSmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
20bbe1b32bSmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21bbe1b32bSmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22bbe1b32bSmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23bbe1b32bSmrg
24bbe1b32bSmrgExcept as contained in this notice, the name of The Open Group shall not be
25bbe1b32bSmrgused in advertising or otherwise to promote the sale, use or other dealings
26bbe1b32bSmrgin this Software without prior written authorization from The Open Group.
27bbe1b32bSmrg * Copyright 1990, 1991 Network Computing Devices;
28bbe1b32bSmrg * Portions Copyright 1987 by Digital Equipment Corporation
29bbe1b32bSmrg *
30bbe1b32bSmrg * Permission to use, copy, modify, distribute, and sell this software and its
31bbe1b32bSmrg * documentation for any purpose is hereby granted without fee, provided that
32bbe1b32bSmrg * the above copyright notice appear in all copies and that both that
33bbe1b32bSmrg * copyright notice and this permission notice appear in supporting
34bbe1b32bSmrg * documentation, and that the names of Network Computing Devices,
35bbe1b32bSmrg * or Digital not be used in advertising or
36bbe1b32bSmrg * publicity pertaining to distribution of the software without specific,
37bbe1b32bSmrg * written prior permission.  Network Computing Devices, or Digital
38bbe1b32bSmrg * make no representations about the
39bbe1b32bSmrg * suitability of this software for any purpose.  It is provided "as is"
40bbe1b32bSmrg * without express or implied warranty.
41bbe1b32bSmrg *
42bbe1b32bSmrg * NETWORK COMPUTING DEVICES, AND DIGITAL DISCLAIM ALL WARRANTIES WITH
43bbe1b32bSmrg * REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
44bbe1b32bSmrg * AND FITNESS, IN NO EVENT SHALL NETWORK COMPUTING DEVICES, OR DIGITAL BE
45bbe1b32bSmrg * LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
46bbe1b32bSmrg * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
47bbe1b32bSmrg * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
48bbe1b32bSmrg * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
49bbe1b32bSmrg *
50bbe1b32bSmrg * @(#)osinit.c	4.3	5/7/91
51bbe1b32bSmrg *
52bbe1b32bSmrg */
53bbe1b32bSmrg/* $XFree86: xc/programs/xfs/os/osinit.c,v 1.4 2001/01/17 23:45:33 dawes Exp $ */
54bbe1b32bSmrg
55bbe1b32bSmrg#include	"os.h"
56bbe1b32bSmrg
57bbe1b32bSmrgextern long LastReapTime;
58bbe1b32bSmrg
59bbe1b32bSmrgvoid
60bbe1b32bSmrgOsInit(void)
61bbe1b32bSmrg{
62bbe1b32bSmrg    LastReapTime = GetTimeInMillis();
63bbe1b32bSmrg    OsInitAllocator ();
64bbe1b32bSmrg}
65