+2006-04-19 Tom Tromey <tromey@redhat.com>
+
+ * gnu/java/nio/channels/natFileChannelPosix.cc (write): Properly
+ handle EINTR.
+
2006-04-17 Tom Tromey <tromey@redhat.com>
PR libgcj/27171:
// natFileChannelImplPosix.cc - Native part of FileChannelImpl class.
-/* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation
+/* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006 Free Software Foundation
This file is part of libgcj.
}
if (errno != EINTR)
throw new IOException (JvNewStringLatin1 (strerror (errno)));
+ continue;
}
written += r;