The branch "master" has been updated in SBCL:
via f10d937a07cb7198852694de95fd14858fccb5d3 (commit)
from b9691ef5009d3669c4f87f4dfbd2baf4538e60f8 (commit)
- Log -----------------------------------------------------------------
commit f10d937a07cb7198852694de95fd14858fccb5d3
Author: Christoph Egger <christoph@...>
Date: Wed Jan 23 06:02:59 2013 +0100
Adapt cheneygc.c to type changes in gc-internal.h
---
src/runtime/cheneygc.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/runtime/cheneygc.c b/src/runtime/cheneygc.c
index 7573c82..14b5208 100644
--- a/src/runtime/cheneygc.c
+++ b/src/runtime/cheneygc.c
@@ -62,19 +62,19 @@ tv_diff(struct timeval *x, struct timeval *y)
#endif
void *
-gc_general_alloc(long bytes, int page_type_flag, int quick_p) {
+gc_general_alloc(word_t bytes, int page_type_flag, int quick_p) {
lispobj *new=new_space_free_pointer;
new_space_free_pointer+=(bytes/N_WORD_BYTES);
return new;
}
-lispobj copy_large_unboxed_object(lispobj object, long nwords) {
+lispobj copy_large_unboxed_object(lispobj object, sword_t nwords) {
return copy_object(object,nwords);
}
-lispobj copy_unboxed_object(lispobj object, long nwords) {
+lispobj copy_unboxed_object(lispobj object, sword_t nwords) {
return copy_object(object,nwords);
}
-lispobj copy_large_object(lispobj object, long nwords) {
+lispobj copy_large_object(lispobj object, sword_t nwords) {
return copy_object(object,nwords);
}
-----------------------------------------------------------------------
hooks/post-receive
--
SBCL
|