Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Array is not traced when sening a msg #116

Closed
albertnetymk opened this issue Apr 10, 2015 · 1 comment
Closed

Array is not traced when sening a msg #116

albertnetymk opened this issue Apr 10, 2015 · 1 comment
Assignees

Comments

@albertnetymk
Copy link
Contributor

class Agent {
  def init(arr:[int]) : void {
    ();
  }

}

class Main {
  def main() : void {
    let
      l = 3*1000
      arr = new [int](l)
    in {
      new Agent(arr)
    }
  }
}
  pony_gc_send();
  /* Not tracing the future in a one_way send */;
  /* Not tracing '_arg_9->f1' */; 
  pony_send_done();

As I understand the emitted code, _arg_9->f1 should be traced.

@albertnetymk albertnetymk changed the title Array is not traced inside a msg Array is not traced when sening a msg Apr 10, 2015
@TobiasWrigstad
Copy link
Contributor

This certainly seems wrong.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants