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

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

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

  • Property mode set to 100644
File size: 523 bytes
Line 
1#include <civlc.cvh>
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.