From be384c0caa92cb152c264125fb265373e6a50440 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 2 Jan 2025 16:24:07 -0500 Subject: Replace threads with generic mutexed datastructures. --- stdlib/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stdlib/types.h') diff --git a/stdlib/types.h b/stdlib/types.h index f644390a..36508393 100644 --- a/stdlib/types.h +++ b/stdlib/types.h @@ -29,7 +29,7 @@ struct TypeInfo_s { int64_t size, align; metamethods_t metamethods; struct { // Anonymous tagged union for convenience - enum { OpaqueInfo, StructInfo, EnumInfo, PointerInfo, TextInfo, ArrayInfo, ChannelInfo, TableInfo, FunctionInfo, + enum { OpaqueInfo, StructInfo, EnumInfo, PointerInfo, TextInfo, ArrayInfo, TableInfo, FunctionInfo, OptionalInfo, TypeInfoInfo } tag; union { struct {} OpaqueInfo; @@ -42,7 +42,7 @@ struct TypeInfo_s { } TextInfo; struct { const TypeInfo_t *item; - } ArrayInfo, ChannelInfo; + } ArrayInfo; struct { const TypeInfo_t *key, *value; } TableInfo; -- cgit v1.2.3