source: examples/gc_no_raii/bug-repro/blockers/file_scope.c @ 1836081

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 1836081 was 73abe95, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Replace extension-less headers with .hfa

  • Property mode set to 100644
File size: 439 bytes
Line 
1
2#include <stdbool.h>
3#include <stdlib.hfa>
4
5#define POOL_SIZE_EXP 24
6#define POOL_SIZE_BYTES 0x1 << POOL_SIZE_EXP
7#define POOL_PTR_MASK ~(POOL_SIZE_BYTES - 1)
8
9#define CARDS_SIZE_EXP 12
10#define CARDS_SIZE_BYTES 0x1 << CARDS_SIZE_EXP
11#define CARDS_OFFSET_MASK (~(CARDS_SIZE_BYTES - 1)) & (POOL_SIZE_BYTES - 1)
12#define CARDS_COUNT POOL_SIZE_BYTES / CARDS_SIZE_BYTES
13
14struct card_table_t
15{
16        size_t count;
17        void* cards_start[CARDS_COUNT];
18};
Note: See TracBrowser for help on using the repository browser.