SCM Repository
View of /branches/vis12/src/compiler/c-target/fragments/shutdown.in
Parent Directory
|
Revision Log
Revision 1862 -
(download)
(annotate)
Sun Apr 22 19:45:47 2012 UTC (8 years, 9 months ago) by jhr
File size: 484 byte(s)
Sun Apr 22 19:45:47 2012 UTC (8 years, 9 months ago) by jhr
File size: 484 byte(s)
Switch to using a biffMsg struct to record errors in the world.
//! shutdown and deallocate the world void @PREFIX@Shutdown (@PREFIX@World_t *wrld) { biffMsgNix (wrld->errors); FREE (wrld->globals); #ifdef DIDEROT_TARGET_PARALLEL FREE (wrld->sched); #endif // free strand objects for (int i = 0; i < wrld->numStrands; i++) { FREE (wrld->inState[i]); FREE (wrld->outState[i]); } // free state arrays FREE (wrld->inState); FREE (wrld->outState); FREE (wrld->status); FREE (wrld); } // @PREFIX@Shutdown
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |