Use new unix-specific primitive to start subprocesses.
authorChris Hanson <org/chris-hanson/cph>
Wed, 22 Oct 1997 07:26:34 +0000 (07:26 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 22 Oct 1997 07:26:34 +0000 (07:26 +0000)
v7/src/runtime/unxprm.scm

index 25cc72aa1b3bbabc5964436e35ebf2261df3954f..a9bfcdbcff98c2d46fdb95e7ef079a00185d06b9 100644 (file)
@@ -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