Skip to content

Commit

Permalink
Merge pull request #3 from johanvos/containerized
Browse files Browse the repository at this point in the history
Add implementation for JVM_IsContainerized
  • Loading branch information
johanvos authored Sep 2, 2024
2 parents 9f12323 + 1e24d80 commit dae1bba
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/JvmFuncs.c
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,10 @@ int jio_vsnprintf(char *str, size_t count, const char *fmt, va_list args) {
return result;
}

JNIEXPORT jboolean JVM_IsContainerized(void *env, void * ignored) {
return JNI_FALSE;
}

#if 0
#ifdef JNI_VERSION_9
/*
Expand Down

0 comments on commit dae1bba

Please sign in to comment.