summaryrefslogtreecommitdiff
path: root/lang/qscheme/files/patch-process.c
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2024-04-10 21:11:35 +0200
committerRene Ladan <rene@FreeBSD.org>2024-04-10 21:12:09 +0200
commit820bb223f0f2e0239ea6e1719161c76f0d1ad7ca (patch)
tree4d936bd8a70dfd8febd1cf9dc12151fa5e8992a1 /lang/qscheme/files/patch-process.c
parentMk/Scripts/do-users-groups.sh: Make message endings consistent (cleanup) (diff)
lang/qscheme: Remove expired port
2024-04-10 lang/qscheme: Unmaintained and there are more modern alternatives
Diffstat (limited to '')
-rw-r--r--lang/qscheme/files/patch-process.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/lang/qscheme/files/patch-process.c b/lang/qscheme/files/patch-process.c
deleted file mode 100644
index ecd3728c03bd..000000000000
--- a/lang/qscheme/files/patch-process.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- process.c.orig 2000-06-01 22:30:18.000000000 +0300
-+++ process.c 2009-03-03 17:37:30.000000000 +0200
-@@ -38,6 +38,7 @@
-
- #define SCM_PROCESS(x) ((SCM_ProcessAux*)SCM_AUX(x))
- #define SCM_PROCESSP(x) (SCM_OBJTYPE(x) == SOBJ_T_PROCESS)
-+#define SCM_PROCESS_SET SCM_AUX_SET
-
- #define SCM_PROCESS_PID(x) (SCM_PROCESS(x)->pid)
- #define SCM_PROCESS_PORT(x,i) (SCM_PROCESS(x)->port[i])
-@@ -153,7 +154,8 @@
- int i;
- SOBJ new = scm_newcell(SOBJ_T_PROCESS);
-
-- SCM_PROCESS(new) = scm_must_alloc(sizeof(SCM_ProcessAux));
-+ /*SCM_PROCESS_SET(new) = scm_must_alloc(sizeof(SCM_ProcessAux));*/
-+ SCM_PROCESS_SET(new, scm_must_alloc(sizeof(SCM_ProcessAux)));
- SCM_PROCESS_PID(new) = 0;
- for (i = 0; i < 3; i++)
- SCM_PROCESS_PORT(new, i) = NULL;