1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-16 16:50:21 +02:00

Deprecate gc-live-object-stats

* libguile/gc.h:
* libguile/gc.c:
* libguile/deprecated.h:
* libguile/deprecated.c (scm_gc_live_object_stats): Deprecate; it hasn't
  worked in the whole 2.0 series.
This commit is contained in:
Andy Wingo 2013-11-28 14:40:58 +01:00
parent e7bd20f7d9
commit d364a89718
4 changed files with 20 additions and 39 deletions

View file

@ -2934,6 +2934,22 @@ scm_c_program_source (SCM program, size_t ip)
}
SCM_DEFINE (scm_gc_live_object_stats, "gc-live-object-stats", 0, 0, 0,
(),
"Return an alist of statistics of the current live objects. ")
#define FUNC_NAME s_scm_gc_live_object_stats
{
scm_c_issue_deprecation_warning
("gc-live-object-stats is deprecated. There is no replacement,\n"
"unfortunately.");
return SCM_EOL;
}
#undef FUNC_NAME
void