source: src/examples/gc_no_raii/src/tools/worklist.h @ d67a9a1

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since d67a9a1 was d67a9a1, checked in by Thierry Delisle <tdelisle@…>, 9 years ago

pool alloc functional

  • Property mode set to 100644
File size: 226 bytes
Line 
1#pragma once
2
3#include <stddef.h>
4#include <stdint.h>
5
6typedef intptr_t* worklist_element_t;
7
8struct worklist_t
9{
10        size_t count;
11        worklist_element_t* data;
12};
13
14void push_back(worklist_t* worklist, worklist_element_t element);
Note: See TracBrowser for help on using the repository browser.