Forum Navigation
Mac OSX crash
Moderators:
kris
Posted: 09/26/07 14:18:44Users of my tango based app are getting a fairly rapid crash. The official error message is "<device> :: Interrupted system call". The exception has no file or line number data in it. As best as I can tell, it's an I/O issue. As far as I've tracked it is to a call to LineIterator?!(char)::next. It appears to crash while waiting for new console input.
$ grep inStream gtp.d
LineIterator?!(char) inStream; /// Used for reading input (default = Cin) this(InputStream? _inStream=Cin.stream, OutputStream? _outStream=Cout.stream, double _pollPeriod=0.1)
inStream = new LineIterator?!(char)(_inStream); char[] line = inStream.next; // get the next complete line