< prev index next >

src/java.base/macosx/classes/sun/nio/ch/KQueue.java

Print this page
rev 49242 : [mq]: selector-cleanup

*** 1,7 **** /* ! * Copyright (c) 2012, 2013, 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 --- 1,7 ---- /* ! * Copyright (c) 2012, 2018, 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
*** 56,65 **** --- 56,66 ---- static final int EVFILT_READ = -1; static final int EVFILT_WRITE = -2; // flags static final int EV_ADD = 0x0001; + static final int EV_DELETE = 0x0002; static final int EV_ONESHOT = 0x0010; static final int EV_CLEAR = 0x0020; /** * Allocates a poll array to handle up to {@code count} events.
< prev index next >