author | Camm Maguire <camm@debian.org> | 2004年06月24日 15:18:11 +0000 |
---|---|---|
committer | Camm Maguire <camm@debian.org> | 2004年06月24日 15:18:11 +0000 |
commit | 84735133339315e972ff6fce4fc3352507133f9b (patch) | |
tree | 45d9eb4eaacb066102296a1ee01277467b181510 | |
parent | 7d2b8e9ec2887dbe3093a2d8f6851c1170e610a5 (diff) | |
download | gcl-Version_2_6_1.tar.gz |
-rw-r--r-- | gcl/debian/changelog | 8 | ||||
-rwxr-xr-x | gcl/h/m68k-linux.h | 2 |
diff --git a/gcl/debian/changelog b/gcl/debian/changelog index 39af87678..091159e52 100644 --- a/gcl/debian/changelog +++ b/gcl/debian/changelog @@ -1,4 +1,10 @@ -gcl (2.6.1-41) unstable; urgency=low +gcl (2.6.1-42) unstable; urgency=low + + * C_GC_OFFSET is 2 on m68k-linux + + -- Camm Maguire <camm@enhanced.com> 2004年6月24日 15:16:17 +0000 + +gcl (2.6.1-41) unstable; urgency=high * Close possibility of malloc failure due to intervening gbc arising from the misordering of allocation calls diff --git a/gcl/h/m68k-linux.h b/gcl/h/m68k-linux.h index 6f4ab035c..986015d5a 100755 --- a/gcl/h/m68k-linux.h +++ b/gcl/h/m68k-linux.h @@ -72,3 +72,5 @@ int cacheflush(void *,int,int,int); v=(void *)((unsigned long)v & ~(CLEAR_CACHE_LINE_SIZE - 1));\ cacheflush(v,FLUSH_SCOPE_PAGE,FLUSH_CACHE_BOTH,ve-v);\ } while(0) + +#define C_GC_OFFSET 2 |