1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-17 01:00:20 +02:00

Rename "boehm-gc.h" to "bdw-gc.h"; add to the distribution.

* libguile/Makefile.am (modinclude_HEADERS): Add `bdw-gc.h'.

* libguile/bdw-gc.h: Rename from "boehm-gc.h"; users updated.  Update to
  LGPLv3+.
This commit is contained in:
Ludovic Courtès 2009-09-13 15:59:31 +02:00
parent b8e18ac25d
commit 1c44468d77
14 changed files with 23 additions and 21 deletions

View file

@ -465,6 +465,7 @@ modinclude_HEADERS = \
arrays.h \ arrays.h \
async.h \ async.h \
backtrace.h \ backtrace.h \
bdw-gc.h \
boolean.h \ boolean.h \
bitvectors.h \ bitvectors.h \
bytevectors.h \ bytevectors.h \

View file

@ -1,21 +1,22 @@
#ifndef SCM_BOEHM_GC_H #ifndef SCM_BDW_GC_H
#define SCM_BOEHM_GC_H #define SCM_BDW_GC_H
/* Copyright (C) 2006, 2008, 2009 Free Software Foundation, Inc. /* Copyright (C) 2006, 2008, 2009 Free Software Foundation, Inc.
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public License
* License as published by the Free Software Foundation; either * as published by the Free Software Foundation; either version 3 of
* version 2.1 of the License, or (at your option) any later version. * the License, or (at your option) any later version.
* *
* This library is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful, but
* but WITHOUT ANY WARRANTY; without even the implied warranty of * WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details. * Lesser General Public License for more details.
* *
* You should have received a copy of the GNU Lesser General Public * You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA
*/ */
/* Correct header inclusion. */ /* Correct header inclusion. */
@ -45,4 +46,4 @@
typedef void *GC_PTR; typedef void *GC_PTR;
#endif #endif
#endif /* SCM_BOEHM_GC_H */ #endif /* SCM_BDW_GC_H */

View file

@ -56,7 +56,7 @@ extern unsigned long * __libc_ia64_register_backing_store_base;
#include "libguile/gc.h" #include "libguile/gc.h"
#include "libguile/dynwind.h" #include "libguile/dynwind.h"
#include "libguile/boehm-gc.h" #include "libguile/bdw-gc.h"
#ifdef GUILE_DEBUG_MALLOC #ifdef GUILE_DEBUG_MALLOC
#include "libguile/debug-malloc.h" #include "libguile/debug-malloc.h"

View file

@ -62,7 +62,7 @@
#include "libguile/eval.h" #include "libguile/eval.h"
#include "libguile/guardians.h" #include "libguile/guardians.h"
#include "libguile/boehm-gc.h" #include "libguile/bdw-gc.h"

View file

@ -78,7 +78,7 @@
"inline.c", when `inline' is not supported at all or when "extern inline" "inline.c", when `inline' is not supported at all or when "extern inline"
is used. */ is used. */
#include "libguile/boehm-gc.h" #include "libguile/bdw-gc.h"
SCM_API SCM scm_cell (scm_t_bits car, scm_t_bits cdr); SCM_API SCM scm_cell (scm_t_bits car, scm_t_bits cdr);

View file

@ -30,7 +30,7 @@
#include <sched.h> #include <sched.h>
/* `libgc' intercepts pthread calls by defining wrapping macros. */ /* `libgc' intercepts pthread calls by defining wrapping macros. */
#include "libguile/boehm-gc.h" #include "libguile/bdw-gc.h"
/* Threads /* Threads
*/ */

View file

@ -38,7 +38,7 @@
#include "libguile/smob.h" #include "libguile/smob.h"
#include "libguile/boehm-gc.h" #include "libguile/bdw-gc.h"
#include <gc/gc_mark.h> #include <gc/gc_mark.h>

View file

@ -26,7 +26,7 @@
#include "libguile/__scm.h" #include "libguile/__scm.h"
#include "libguile/print.h" #include "libguile/print.h"
#include "libguile/boehm-gc.h" #include "libguile/bdw-gc.h"

View file

@ -28,7 +28,7 @@
#include "libguile/_scm.h" #include "libguile/_scm.h"
#include "libguile/__scm.h" #include "libguile/__scm.h"
#include "libguile/boehm-gc.h" #include "libguile/bdw-gc.h"
#include "libguile/srfi-4.h" #include "libguile/srfi-4.h"
#include "libguile/bitvectors.h" #include "libguile/bitvectors.h"
#include "libguile/bytevectors.h" #include "libguile/bytevectors.h"

View file

@ -41,7 +41,7 @@
#include <string.h> #include <string.h>
#endif #endif
#include "libguile/boehm-gc.h" #include "libguile/bdw-gc.h"

View file

@ -22,7 +22,7 @@
# include <config.h> # include <config.h>
#endif #endif
#include "libguile/boehm-gc.h" #include "libguile/bdw-gc.h"
#include "libguile/_scm.h" #include "libguile/_scm.h"
#if HAVE_UNISTD_H #if HAVE_UNISTD_H

View file

@ -41,7 +41,7 @@
#include "libguile/dynwind.h" #include "libguile/dynwind.h"
#include "libguile/deprecation.h" #include "libguile/deprecation.h"
#include "libguile/boehm-gc.h" #include "libguile/bdw-gc.h"

View file

@ -25,7 +25,7 @@
#include <string.h> #include <string.h>
#include <assert.h> #include <assert.h>
#include "libguile/boehm-gc.h" #include "libguile/bdw-gc.h"
#include <gc/gc_mark.h> #include <gc/gc_mark.h>
#include "_scm.h" #include "_scm.h"

View file

@ -32,7 +32,7 @@
#include "libguile/validate.h" #include "libguile/validate.h"
#include "libguile/weaks.h" #include "libguile/weaks.h"
#include "libguile/boehm-gc.h" #include "libguile/bdw-gc.h"
#include <gc/gc_typed.h> #include <gc/gc_typed.h>