------- Comment #8 from csm at gnu dot org  2006-06-07 00:08 -------
A workaround is to replace:

  while (running)
    counter++;

with:

  while (isRunning ())
    counter++;

And to add a method:

  boolean isRunning ()
  {
    return running;
  }

I'm working on a patch for this.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27908

Reply via email to