diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-31 02:11:03 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-31 02:11:03 -0400 |
| commit | 7a172be6213839a3d023ba21c3bafd7540a4bfe8 (patch) | |
| tree | 5646ba0e4c0690fe64711fb77658308541de695b /src/stdlib/mutexeddata.h | |
| parent | d3655740cc6a8e6c4788946af412065fb52f51dc (diff) | |
Remove threads and mutexed data from the language in favor of a
module-based approach
Diffstat (limited to 'src/stdlib/mutexeddata.h')
| -rw-r--r-- | src/stdlib/mutexeddata.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/stdlib/mutexeddata.h b/src/stdlib/mutexeddata.h deleted file mode 100644 index 47686195..00000000 --- a/src/stdlib/mutexeddata.h +++ /dev/null @@ -1,17 +0,0 @@ -#pragma once - -// Metamethods and type info for mutexed data - -#include "types.h" -#include "optionals.h" -#include "util.h" - -#define NONE_MUTEXED_DATA ((MutexedData_t)NULL) - -extern const metamethods_t MutexedData$metamethods; - -#define MutexedData$info(t) &((TypeInfo_t){.size=sizeof(MutexedData_t), .align=__alignof(MutexedData_t), \ - .tag=MutexedDataInfo, .MutexedDataInfo.type=t, \ - .metamethods=MutexedData$metamethods}) - -// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0 |
