diff options
author | Andy Wingo <wingo@pobox.com> | 2018-06-17 10:46:10 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-06-17 13:41:03 +0200 |
commit | b2515e65bd7d824f71ff103efd2b8c42d60ab30e (patch) | |
tree | ab00d427077cadeb2a60dfe7d3baab786f1a1e03 /libguile/gc.h | |
parent | 418a7d7af935524f87a940545a747066f1fd6b1e (diff) | |
download | guile-b2515e65bd7d824f71ff103efd2b8c42d60ab30e.tar.gz |
Remove unused getters for register backing store base
* libguile/gc.h:
* libguile/threads.c: Remove unused implementations of
scm_ia64_register_backing_store_base, as libgc does this for us.
Diffstat (limited to 'libguile/gc.h')
-rw-r--r-- | libguile/gc.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libguile/gc.h b/libguile/gc.h index 734469929..7945f6193 100644 --- a/libguile/gc.h +++ b/libguile/gc.h @@ -3,8 +3,8 @@ #ifndef SCM_GC_H #define SCM_GC_H -/* Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, - * 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Free Software Foundation, Inc. +/* Copyright (C) 1995-1996,1998-2004,2006-2014,2018 + * Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -94,7 +94,6 @@ SCM_INTERNAL scm_i_pthread_mutex_t scm_i_gc_admin_mutex; SCM_INTERNAL scm_i_pthread_mutex_t scm_i_sweep_mutex; #ifdef __ia64__ -void *scm_ia64_register_backing_store_base (void); void *scm_ia64_ar_bsp (const void *); #endif |