From 30c4eff4a93043a09e2e77d16accfbea298661e6 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Wed, 22 Oct 1997 07:26:34 +0000 Subject: [PATCH] Use new unix-specific primitive to start subprocesses. --- v7/src/runtime/unxprm.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/v7/src/runtime/unxprm.scm b/v7/src/runtime/unxprm.scm index 25cc72aa1..a9bfcdbcf 100644 --- a/v7/src/runtime/unxprm.scm +++ b/v7/src/runtime/unxprm.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: unxprm.scm,v 1.47 1997/10/22 05:15:55 cph Exp $ +$Id: unxprm.scm,v 1.48 1997/10/22 07:26:34 cph Exp $ Copyright (c) 1988-97 Massachusetts Institute of Technology @@ -466,6 +466,6 @@ MIT in each case. |# (define (os/make-subprocess filename arguments environment working-directory ctty stdin stdout stderr) - ((ucode-primitive make-subprocess 7) filename arguments - (cons environment working-directory) - ctty stdin stdout stderr)) \ No newline at end of file + ((ucode-primitive ux-make-subprocess 8) + filename arguments environment working-directory + ctty stdin stdout stderr)) \ No newline at end of file -- 2.25.1