Author: markt Date: Wed Oct 2 10:11:00 2013 New Revision: 1528407 URL: http://svn.apache.org/r1528407 Log: Move comments as they are being associated with the wrong values.
Modified: tomcat/trunk/java/org/apache/tomcat/jni/Poll.java Modified: tomcat/trunk/java/org/apache/tomcat/jni/Poll.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/jni/Poll.java?rev=1528407&r1=1528406&r2=1528407&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/jni/Poll.java (original) +++ tomcat/trunk/java/org/apache/tomcat/jni/Poll.java Wed Oct 2 10:11:00 2013 @@ -24,14 +24,20 @@ package org.apache.tomcat.jni; public class Poll { /** - * Poll options + * Poll return values */ - public static final int APR_POLLIN = 0x001; /** Can read without blocking */ - public static final int APR_POLLPRI = 0x002; /** Priority data available */ - public static final int APR_POLLOUT = 0x004; /** Can write without blocking */ - public static final int APR_POLLERR = 0x010; /** Pending error */ - public static final int APR_POLLHUP = 0x020; /** Hangup occurred */ - public static final int APR_POLLNVAL = 0x040; /** Descriptor invalid */ + /** Can read without blocking */ + public static final int APR_POLLIN = 0x001; + /** Priority data available */ + public static final int APR_POLLPRI = 0x002; + /** Can write without blocking */ + public static final int APR_POLLOUT = 0x004; + /** Pending error */ + public static final int APR_POLLERR = 0x010; + /** Hangup occurred */ + public static final int APR_POLLHUP = 0x020; + /** Descriptor invalid */ + public static final int APR_POLLNVAL = 0x040; /** * Pollset Flags --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org