Skip to content

Commit 0536c3a

Browse files
committed
requests: fixes to some multirequest test functions
Signed-off-by: Howard Pritchard <[email protected]>
1 parent 06c7d90 commit 0536c3a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

ompi/mpi/c/testall.c.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* reserved.
1616
* Copyright (c) 2015 Research Organization for Information Science
1717
* and Technology (RIST). All rights reserved.
18-
* Copyright (c) 2021-2024 Triad National Security, LLC. All rights
18+
* Copyright (c) 2021-2025 Triad National Security, LLC. All rights
1919
* reserved.
2020
* Copyright (c) 2024 NVIDIA Corporation. All rights reserved.
2121
* $COPYRIGHT$
@@ -35,7 +35,7 @@
3535
#include "ompi/memchecker.h"
3636
#include "ompi/runtime/ompi_spc.h"
3737

38-
PROTOTYPE ERROR_CLASS testall(INT count, REQUEST_INOUT requests, INT_OUT flag,
38+
PROTOTYPE ERROR_CLASS testall(INT count, REQUEST_INOUT requests:count, INT_OUT flag,
3939
STATUS_OUT statuses)
4040
{
4141
SPC_RECORD(OMPI_SPC_TESTALL, 1);

ompi/mpi/c/testany.c.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* reserved.
1616
* Copyright (c) 2014-2015 Research Organization for Information Science
1717
* and Technology (RIST). All rights reserved.
18-
* Copyright (c) 2021-2024 Triad National Security, LLC. All rights
18+
* Copyright (c) 2021-2025 Triad National Security, LLC. All rights
1919
* reserved.
2020
* Copyright (c) 2024 NVIDIA Corporation. All rights reserved.
2121
* $COPYRIGHT$
@@ -35,7 +35,7 @@
3535
#include "ompi/memchecker.h"
3636
#include "ompi/runtime/ompi_spc.h"
3737

38-
PROTOTYPE ERROR_CLASS testany(INT count, REQUEST_INOUT requests, INT_OUT indx, INT_OUT completed, STATUS_OUT status)
38+
PROTOTYPE ERROR_CLASS testany(INT count, REQUEST_INOUT requests:count, INT_OUT indx, INT_OUT completed, STATUS_OUT status)
3939
{
4040
SPC_RECORD(OMPI_SPC_TESTANY, 1);
4141

ompi/mpi/c/testsome.c.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* reserved.
1616
* Copyright (c) 2015 Research Organization for Information Science
1717
* and Technology (RIST). All rights reserved.
18-
* Copyright (c) 2021-2024 Triad National Security, LLC. All rights
18+
* Copyright (c) 2021-2025 Triad National Security, LLC. All rights
1919
* reserved.
2020
* Copyright (c) 2024 NVIDIA Corporation. All rights reserved.
2121
* $COPYRIGHT$
@@ -35,7 +35,7 @@
3535
#include "ompi/memchecker.h"
3636
#include "ompi/runtime/ompi_spc.h"
3737

38-
PROTOTYPE ERROR_CLASS testsome(INT incount, REQUEST_INOUT requests,
38+
PROTOTYPE ERROR_CLASS testsome(INT incount, REQUEST_INOUT requests:incount,
3939
INT_OUT outcount, INT_OUT indices,
4040
STATUS_OUT statuses)
4141
{

ompi/mpi/c/waitany.c.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* reserved.
1616
* Copyright (c) 2014-2015 Research Organization for Information Science
1717
* and Technology (RIST). All rights reserved.
18-
* Copyright (c) 2021-2024 Triad National Security, LLC. All rights
18+
* Copyright (c) 2021-2025 Triad National Security, LLC. All rights
1919
* reserved.
2020
* Copyright (c) 2024 NVIDIA Corporation. All rights reserved.
2121
* Copyright (c) 2024 Triad National Security, LLC. All rights
@@ -37,7 +37,7 @@
3737
#include "ompi/memchecker.h"
3838
#include "ompi/runtime/ompi_spc.h"
3939

40-
PROTOTYPE ERROR_CLASS waitany(INT count, REQUEST_INOUT requests, INT_OUT indx, STATUS_OUT status)
40+
PROTOTYPE ERROR_CLASS waitany(INT count, REQUEST_INOUT requests:count, INT_OUT indx, STATUS_OUT status)
4141
{
4242
SPC_RECORD(OMPI_SPC_WAITANY, 1);
4343

0 commit comments

Comments
 (0)