Datasets:

License:
File size: 1,594 Bytes
3dcad1f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* Copyright 2016
     Free Software Foundation, Inc.

   This file is part of Guile.

   Guile 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.

   Guile 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 Guile.  If not, see
   <https://www.gnu.org/licenses/>.  */

#if HAVE_CONFIG_H
#include <config.h>
#endif

#undef NDEBUG

#include <libguile.h>
#include <assert.h>

static SCM
mark_smob (SCM smob)
{
  assert (SCM_SMOB_DATA (smob) == 1);
  return SCM_BOOL_F;
}

static size_t
finalize_smob (SCM smob)
{
  assert (SCM_SMOB_DATA (smob) == 1);
  SCM_SET_SMOB_DATA (smob, 0);
  /* Allocate a bit in the hopes of triggering a new GC, making the
     marker race with the finalizer.  */
  scm_cons (SCM_BOOL_F, SCM_BOOL_F);
  return 0;
}

static void
tests (void *data, int argc, char **argv)
{
  scm_t_bits tc16;
  int i;

  tc16 = scm_make_smob_type ("smob with finalizer", 0);
  scm_set_smob_mark (tc16, mark_smob);
  scm_set_smob_free (tc16, finalize_smob);

  for (i = 0; i < 1000 * 1000; i++)
    scm_new_smob (tc16, 1);
}

int
main (int argc, char *argv[])
{
  scm_boot_guile (argc, argv, tests, NULL);
  return 0;
}