Introducing Java Servlet Container beta.

This commit is contained in:
Max Romanov
2019-02-28 18:02:42 +03:00
parent ec7319d32c
commit 5bfdebb9e4
95 changed files with 13360 additions and 1 deletions

20
src/java/nxt_jni_Thread.h Normal file
View File

@@ -0,0 +1,20 @@
/*
* Copyright (C) NGINX, Inc.
*/
#ifndef _NXT_JAVA_THREAD_H_INCLUDED_
#define _NXT_JAVA_THREAD_H_INCLUDED_
#include <jni.h>
int nxt_java_initThread(JNIEnv *env);
void nxt_java_setContextClassLoader(JNIEnv *env, jobject cl);
jobject nxt_java_getContextClassLoader(JNIEnv *env);
#endif /* _NXT_JAVA_THREAD_H_INCLUDED_ */