diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-03-30 23:32:45 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-03-30 23:32:45 +0000 |
commit | 5c90be52820b2f383dea2662b3b3cba2a1b50f5b (patch) | |
tree | c07565658dfcb3199c54859ee9c8372b574334ad | |
parent | b6cc0ef66dcadb449989677123499031f669912e (diff) | |
download | guile-5c90be52820b2f383dea2662b3b3cba2a1b50f5b.tar.gz |
* coop-defs.h (struct coop_t): Added `sto'-field again because of
binary compatibility---let's remove it next time we alter some
major structure.
-rw-r--r-- | libguile/coop-defs.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libguile/coop-defs.h b/libguile/coop-defs.h index 8d6985849..a863d5218 100644 --- a/libguile/coop-defs.h +++ b/libguile/coop-defs.h @@ -85,9 +85,7 @@ struct qt_t; typedef struct coop_t { struct qt_t *sp; /* QuickThreads handle. */ -#ifndef GUILE_PTHREAD_COMPAT void *sto; /* `malloc'-allocated stack. */ -#endif struct coop_t *next; /* Next thread in the queue. */ |