mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-27 21:40:34 +02:00
* libguile/ephemerons.h: * libguile/ephemerons.c (scm_c_make_ephemeron): (scm_c_ephemeron_key): (scm_c_ephemeron_value): (scm_c_ephemeron_mark_dead_x): (scm_c_ephemeron_swap_x): (scm_c_ephemeron_next): Add C ephemeron API. (scm_make_ephemeron, scm_ephemeron_key, scm_ephemeron_value) (scm_ephemeron_mark_dead_x): Dispatch to helpers above. (scm_ephemeron_swap_x, scm_ephemeron_mark_dead_x): New Scheme-exposed functions. (scm_c_make_ephemeron_table): (scm_c_ephemeron_table_length): (scm_c_ephemeron_table_ref): (scm_c_ephemeron_table_push_x): (scm_c_ephemeron_table_try_push_x): New C API for tables of ephemerons. (scm_ephemeron_table_length): (scm_ephemeron_table_ref): (scm_ephemeron_table_push_x): (scm_ephemeron_table_try_push_x): New Scheme-exposed API. (scm_c_ephemeron_hash_table_refq): (scm_c_ephemeron_hash_table_setq_x): (scm_c_ephemeron_hash_table_copy): New C API for use by internal weak table users (dynamic states, etc). * module/ice-9/ephemerons.scm: Add new Scheme API. * libguile/evalext.c (scm_self_evaluating_p): * libguile/goops.c (scm_class_of, %goops-early-init): * libguile/print.c (iprin1): * module/oop/goops.scm: * libguile/scm.h (scm_tc7_ephemeron_table): Add new tc7 for ephemeron tables. * test-suite/tests/ephemerons.test ("ephemeron tables"): Add tests.
42 lines
1.3 KiB
Scheme
42 lines
1.3 KiB
Scheme
;;; Copyright (C) 2025 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 as
|
||
;;; published by the Free Software Foundation, either version 3 of the
|
||
;;; License, or (at your option) any later version.
|
||
;;;
|
||
;;; This library is distributed in the hope that it will be useful, but
|
||
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
;;; Lesser General Public License for more details.
|
||
;;;
|
||
;;; You should have received a copy of the GNU Lesser General Public
|
||
;;; License along with this program. If not, see
|
||
;;; <http://www.gnu.org/licenses/>.
|
||
|
||
;;; Commentary:
|
||
;;;
|
||
;;;
|
||
;;; Code:
|
||
|
||
|
||
(define-module (ice-9 ephemerons)
|
||
#:export (ephemeron?
|
||
make-ephemeron
|
||
ephemeron-key
|
||
ephemeron-value
|
||
ephemeron-swap!
|
||
ephemeron-mark-dead!
|
||
ephemeron-next
|
||
|
||
make-ephemeron-table
|
||
ephemeron-table?
|
||
ephemeron-table-length
|
||
|
||
ephemeron-table-ref
|
||
ephemeron-table-push!
|
||
ephemeron-table-try-push!))
|
||
|
||
(eval-when (expand load eval)
|
||
(load-extension (string-append "libguile-" (effective-version))
|
||
"scm_init_ephemerons"))
|