@Nativepublicstaticfinalint EOF = -1; // End of file
@Nativepublicstaticfinalint UNAVAILABLE = -2; // Nothing available (non-blocking)
@Nativepublicstaticfinalint INTERRUPTED = -3; // System call interrupted
@Nativepublicstaticfinalint UNSUPPORTED = -4; // Operation not supported
@Nativepublicstaticfinalint THROWN = -5; // Exception thrown in JNI code
@Nativepublicstaticfinalint UNSUPPORTED_CASE = -6; // This case not supported
// The following two methods are for use in try/finally blocks where a // status value needs to be normalized before being returned to the invoker // but also checked for illegal negative values before the return // completes, like so: // // int n = 0; // try { // begin(); // n = op(fd, buf, ...); // return IOStatus.normalize(n); // Converts UNAVAILABLE to zero // } finally { // end(n > 0); // assert IOStatus.check(n); // Checks other negative values // } //
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.