Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2011-07-30 14:36:33 +0400
committerjfrijters <jfrijters>2011-07-30 14:36:33 +0400
commitce926b454abab8c822d7ba250ab46e2ff753304a (patch)
tree61d5101e8e8c0a87b721c8206e04945c2c8d1ed9 /openjdk/sun
parentfff0e0813f07c2cac16091760b0adcf0086540db (diff)
Removed unused files that use unsafe operations. Forked PollArrayWrapper for the constants.
Diffstat (limited to 'openjdk/sun')
-rw-r--r--openjdk/sun/nio/ch/PollArrayWrapper.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/openjdk/sun/nio/ch/PollArrayWrapper.java b/openjdk/sun/nio/ch/PollArrayWrapper.java
new file mode 100644
index 00000000..72ed9adc
--- /dev/null
+++ b/openjdk/sun/nio/ch/PollArrayWrapper.java
@@ -0,0 +1,37 @@
+/*
+ * Copyright (c) 2001, 2002, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation. Oracle designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Oracle in the LICENSE file that accompanied this code.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+package sun.nio.ch;
+
+class PollArrayWrapper
+{
+ static final short POLLIN = 0x0001;
+ static final short POLLCONN = 0x0002;
+ static final short POLLOUT = 0x0004;
+ static final short POLLERR = 0x0008;
+ static final short POLLHUP = 0x0010;
+ static final short POLLNVAL = 0x0020;
+ static final short POLLREMOVE = 0x0800;
+}