source: CIVL/examples/languageFeatures/2dpointerTest.cvl@ b144b24

1.23 2.0 main test-branch
Last change on this file since b144b24 was 48bfab9, checked in by Manchun Zheng <zmanchun@…>, 12 years ago

added checking for memory leak when collecting a dyscope and for process leak when the main process returns; fixed all test cases accordingly; added a filesystem_destroy call for IOTransformer to get rid of memory leak.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@912 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 521 bytes
Line 
1#include <civlc.h>
2int sh = 0;
3
4void Process(){
5 double ** buf;
6 int *p;
7 $scope myScope = $here;
8
9 p = (int *)$malloc($here, 2 * sizeof(int));
10 buf = (double **)$malloc($here, 2 * sizeof(double *));
11 for(int i=0; i<2; i++){
12 buf[i] = (double *)$malloc(myScope,
13 2 * sizeof(double));
14 }
15 $free(p);
16 for(int i=0; i<2; i++){
17 $free(buf[i]);
18 }
19 $free(buf);
20}
21
22void main(){
23 $proc procs[2];
24
25 procs[0] = $spawn Process();
26 procs[1] = $spawn Process();
27 $wait(procs[0]);
28 $wait(procs[1]);
29}
Note: See TracBrowser for help on using the repository browser.