source: tests/zombies/gc_no_raii/bug-repro/blockers/file_scope.c @ 474d610

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 474d610 was 87b9332, checked in by Andrew Beach <ajbeach@…>, 4 years ago

Moved 'examples/' to 'tests/zombies/'.

  • 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.