blob: a27e7b853307f33e05d44e6e57737fb0e02dcf16 [file] [log] [blame]
Elliott Hughese27d0202011-05-16 11:00:35 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "AsynchronousCloseMonitor"
18
Neil Fullerf0d40d62014-04-11 17:16:30 +010019#include "AsynchronousCloseMonitor.h"
Elliott Hughese27d0202011-05-16 11:00:35 -070020#include "JNIHelp.h"
21#include "JniConstants.h"
22#include "jni.h"
23
24static void AsynchronousCloseMonitor_signalBlockedThreads(JNIEnv* env, jclass, jobject javaFd) {
25 int fd = jniGetFDFromFileDescriptor(env, javaFd);
Neil Fullerf0d40d62014-04-11 17:16:30 +010026 AsynchronousCloseMonitor::signalBlockedThreads(fd);
Elliott Hughese27d0202011-05-16 11:00:35 -070027}
28
29static JNINativeMethod gMethods[] = {
30 NATIVE_METHOD(AsynchronousCloseMonitor, signalBlockedThreads, "(Ljava/io/FileDescriptor;)V"),
31};
Elliott Hughes7cd67602012-05-03 17:21:04 -070032void register_libcore_io_AsynchronousCloseMonitor(JNIEnv* env) {
Neil Fullerf0d40d62014-04-11 17:16:30 +010033 AsynchronousCloseMonitor::init();
Elliott Hughes7cd67602012-05-03 17:21:04 -070034 jniRegisterNativeMethods(env, "libcore/io/AsynchronousCloseMonitor", gMethods, NELEM(gMethods));
Elliott Hughese27d0202011-05-16 11:00:35 -070035}