From e6c7731d9b9aa933f67cf50a65a4fb5bf69531bc Mon Sep 17 00:00:00 2001 From: Aurelien Bouteiller Date: Wed, 5 Aug 2020 01:20:16 -0400 Subject: [PATCH] Missing function to populate java error handler abort Signed-off-by: Aurelien Bouteiller --- ompi/mpi/java/java/Errhandler.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ompi/mpi/java/java/Errhandler.java b/ompi/mpi/java/java/Errhandler.java index 75917b408e..32e63867d7 100644 --- a/ompi/mpi/java/java/Errhandler.java +++ b/ompi/mpi/java/java/Errhandler.java @@ -2,7 +2,7 @@ * Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana * University Research and Technology * Corporation. All rights reserved. - * Copyright (c) 2004-2005 The University of Tennessee and The University + * Copyright (c) 2004-2020 The University of Tennessee and The University * of Tennessee Research Foundation. All rights * reserved. * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, @@ -55,6 +55,7 @@ public final class Errhandler protected long handle; protected static native long getFatal(); + protected static native long getAbort(); protected static native long getReturn(); protected Errhandler(long handle)