[vmkit-commits] [PATCH] Don't abort on JVM_SetClassSigners, let it proceed.

Nicolas Geoffray nicolas.geoffray at gmail.com
Tue Nov 8 12:53:19 PST 2011


Looks good.

On Mon, Nov 7, 2011 at 9:26 PM, Will Dietz <wdietz2 at illinois.edu> wrote:

> Inlined below.
>
> Seems benign, and helps get through code that insists on setting the
> signers.
>
> ~Will
>
> >From c4ed3b1df165e863a1cc0f0e7d1ebde188f82de4 Mon Sep 17 00:00:00 2001
> From: Will Dietz <w at wdtz.org>
> Date: Sun, 6 Nov 2011 23:31:03 -0600
> Subject: [PATCH 2/3] Don't abort on JVM_SetClassSigners, let it proceed.
>
> ---
>  lib/J3/ClassLib/OpenJDK/OpenJDK.inc |    4 +++-
>  1 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/lib/J3/ClassLib/OpenJDK/OpenJDK.inc
> b/lib/J3/ClassLib/OpenJDK/OpenJDK.inc
> index e625a9f..b86b56f 100644
> --- a/lib/J3/ClassLib/OpenJDK/OpenJDK.inc
> +++ b/lib/J3/ClassLib/OpenJDK/OpenJDK.inc
> @@ -1160,7 +1160,9 @@ JVM_GetClassSigners(JNIEnv *env, jclass cls) {
>
>  JNIEXPORT void JNICALL
>  JVM_SetClassSigners(JNIEnv *env, jclass cls, jobjectArray signers) {
> -  NYI();
> +  // Let them 'set' signers, since we don't implement this yet and
> +  // don't allow them to 'get' the value back (above).
> +  //NYI();
>  }
>
>  JNIEXPORT jobject JNICALL
> --
> 1.7.5.1
> _______________________________________________
> vmkit-commits mailing list
> vmkit-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/vmkit-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/vmkit-commits/attachments/20111108/b921d305/attachment.html>


More information about the vmkit-commits mailing list