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
RevLine 
[e6b02c8]1#include <civlc.cvh>
[f529acc]2int sh = 0;
[361d37a]3
4void Process(){
5 double ** buf;
6 int *p;
[48bfab9]7 $scope myScope = $here;
[361d37a]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++){
[48bfab9]12 buf[i] = (double *)$malloc(myScope,
[361d37a]13 2 * sizeof(double));
14 }
[48bfab9]15 $free(p);
16 for(int i=0; i<2; i++){
17 $free(buf[i]);
[f529acc]18 }
[48bfab9]19 $free(buf);
20}
[f529acc]21
[361d37a]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.