summaryrefslogtreecommitdiff
path: root/libguile/whippet/api/gc-collection-kind.h
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2025-04-11 14:10:41 +0200
committerAndy Wingo <wingo@pobox.com>2025-04-11 14:10:41 +0200
commitdb181e67ff482ab08cbdb0c1a88997b3a886f900 (patch)
tree6d16fbca515ae3cf506a9d16dbc89c472446e5d9 /libguile/whippet/api/gc-collection-kind.h
parentaf96820e072d18c49ac03e80c6f3466d568dc77d (diff)
parentf909438596f63ecd44c5b9a28385260714857361 (diff)
downloadguile-db181e67ff482ab08cbdb0c1a88997b3a886f900.tar.gz
Merged Whippet into libguile/whippet
Diffstat (limited to 'libguile/whippet/api/gc-collection-kind.h')
-rw-r--r--libguile/whippet/api/gc-collection-kind.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/libguile/whippet/api/gc-collection-kind.h b/libguile/whippet/api/gc-collection-kind.h
new file mode 100644
index 000000000..11cfc276a
--- /dev/null
+++ b/libguile/whippet/api/gc-collection-kind.h
@@ -0,0 +1,11 @@
+#ifndef GC_COLLECTION_KIND_H
+#define GC_COLLECTION_KIND_H
+
+enum gc_collection_kind {
+ GC_COLLECTION_ANY,
+ GC_COLLECTION_MINOR,
+ GC_COLLECTION_MAJOR,
+ GC_COLLECTION_COMPACTING,
+};
+
+#endif // GC_COLLECTION_KIND_H