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

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 c44e622 was c44e622, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

intermediate implementation of vector

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