UXExec.mesa
Copyright Ó 1988, 1991 by Xerox Corporation. All rights reserved.
Eduardo Pelegri-Llopart, November 30, 1988 12:45:24 pm PST
This is a terrible hack that should also be very short-lived.
DIRECTORY
Rope;
UXExec: CEDAR DEFINITIONS
~ BEGIN
ROPE: TYPE ~ Rope.ROPE;
MaxArg: INT ~ 20;
maximum number of arguments
Execute: PROC [fileRope: ROPE, commandRope: ROPE];
UnixFork: PROC RETURNS [pid: INT]; -- doesn't work right now
Wait: PROC [statusp: POINTER TO INT] RETURNS [pid: INT];
END.