guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 07/07: fixup! Make system* and piped-process internally


From: Ludovic Courtès
Subject: [Guile-commits] 07/07: fixup! Make system* and piped-process internally use spawn.
Date: Fri, 23 Dec 2022 05:45:31 -0500 (EST)

civodul pushed a commit to branch wip-posix-spawn
in repository guile.

commit 7073b5f67686f175d44bac0549c3e2e6935f7463
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Fri Dec 23 11:42:57 2022 +0100

    fixup! Make system* and piped-process internally use spawn.
    
    Keep 'scm_spawn_process' internal for now.
---
 libguile/posix.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libguile/posix.h b/libguile/posix.h
index c2703f9ab..fb68b1449 100644
--- a/libguile/posix.h
+++ b/libguile/posix.h
@@ -69,8 +69,8 @@ SCM_API SCM scm_tmpnam (void);
 SCM_API SCM scm_tmpfile (void);
 SCM_API SCM scm_open_pipe (SCM pipestr, SCM modes);
 SCM_API SCM scm_close_pipe (SCM port);
-SCM_API SCM scm_spawn_process (SCM prog, SCM args,
-                               SCM in, SCM out, SCM err);
+SCM_INTERNAL SCM scm_spawn_process (SCM prog, SCM args,
+                                    SCM in, SCM out, SCM err);
 SCM_API SCM scm_system_star (SCM cmds);
 SCM_API SCM scm_utime (SCM object, SCM actime, SCM modtime,
                        SCM actimens, SCM modtimens, SCM flags);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]