Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ompi/mpi/java/java/Comm.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
/**
* The {@code Comm} class represents communicators.
*/
public class Comm implements Freeable
public class Comm implements Freeable, Cloneable
{
public final static int TYPE_SHARED = 0;
protected final static int SELF = 1;
Expand Down
2 changes: 1 addition & 1 deletion ompi/mpi/java/java/Datatype.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
/**
* The {@code Datatype} class represents {@code MPI_Datatype} handles.
*/
public final class Datatype implements Freeable
public final class Datatype implements Freeable, Cloneable
{
protected long handle;
protected int baseType;
Expand Down
2 changes: 1 addition & 1 deletion ompi/mpi/java/java/Info.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* This class represents {@code MPI_Info}.
*/
public final class Info implements Freeable
public final class Info implements Freeable, Cloneable
{
protected long handle;
protected static final long NULL = getNull();
Expand Down