BSD 4_3_Tahoe release
[unix-history] / usr / src / new / X / uwm / Restart.c
CommitLineData
ca67e7b4
C
1#ifndef lint
2static char *rcsid_Restart_c = "$Header: Restart.c,v 10.4 86/11/19 16:24:40 jg Rel $";
3#endif lint
4
5/*
6 * COPYRIGHT 1985, 1986
7 * DIGITAL EQUIPMENT CORPORATION
8 * MAYNARD, MASSACHUSETTS
9 * ALL RIGHTS RESERVED.
10 *
11 * THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE AND
12 * SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION.
13 * DIGITAL MAKES NO REPRESENTATIONS ABOUT THE SUITIBILITY OF THIS SOFTWARE FOR
14 * ANY PURPOSE. IT IS SUPPLIED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY.
15 *
16 * IF THE SOFTWARE IS MODIFIED IN A MANNER CREATING DERIVATIVE COPYRIGHT RIGHTS,
17 * APPROPRIATE LEGENDS MAY BE PLACED ON THE DERIVATIVE WORK IN ADDITION TO THAT
18 * SET FORTH ABOVE.
19 *
20 *
21 * Permission to use, copy, modify, and distribute this software and its
22 * documentation for any purpose and without fee is hereby granted, provided
23 * that the above copyright notice appear in all copies and that both that
24 * copyright notice and this permission notice appear in supporting documentation,
25 * and that the name of Digital Equipment Corporation not be used in advertising
26 * or publicity pertaining to distribution of the software without specific,
27 * written prior permission.
28 *
29 */
30
31
32/*
33 * MODIFICATION HISTORY
34 *
35 * 000 -- M. Gancarz, DEC Ultrix Engineering Group
36 */
37
38#ifndef lint
39static char *sccsid = "@(#)Restart.c 3.8 1/24/86";
40#endif
41
42#include "uwm.h"
43
44Bool Restart(window, mask, button, x, y)
45Window window; /* Event window. */
46int mask; /* Button/key mask. */
47short button; /* Button event detail. */
48int x, y; /* Event mouse position. */
49{
50 XButtonEvent button_event;
51
52 XFeep(Volume);
53 XFeep(Volume);
54 XFlush();
55 execvp(*Argv, Argv, Environ);
56 fprintf(stderr, "uwm: Restart failed!\n");
57}