Skip to content

Commit 0212410

Browse files
author
Sergey Oblomov
committed
OSHMEM/ATOMICS: fixed comments errors
Signed-off-by: Sergey Oblomov <[email protected]>
1 parent 64212a9 commit 0212410

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

oshmem/mca/atomic/atomic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ BEGIN_C_DECLS
5353
pe)); \
5454
RUNTIME_CHECK_RC(rc); \
5555
\
56-
return ; \
56+
return; \
5757
}
5858

5959
#define OSHMEM_TYPE_FOP(type_name, type, prefix, op) \

oshmem/shmem/c/shmem_and.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/*
2121
* These routines perform an atomic 'and' operation.
22-
* The atomic 'and' routines cwoperates 'and' value to the data at address target on PE pe.
22+
* The atomic 'and' routines operates 'and' value to the data at address target on PE pe.
2323
* The operation must be completed without the possibility of another process updating
2424
* target between the time of the fetch and the update.
2525
*/

oshmem/shmem/c/shmem_fand.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* These routines perform an atomic fetch-and-and operation.
2323
* The fetch and and routines retrieve the value at address target on PE pe, and update
2424
* target with the result of 'and' operation value to the retrieved value. The operation
25-
* must be completed * without the possibility of another process updating target between
25+
* must be completed without the possibility of another process updating target between
2626
* the time of the fetch and the update.
2727
*/
2828
#if OSHMEM_PROFILING

oshmem/shmem/c/shmem_for.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* These routines perform an atomic fetch-and-or operation.
2323
* The fetch and or routines retrieve the value at address target on PE pe, and update
2424
* target with the result of 'or' operation value to the retrieved value. The operation
25-
* must be completed * without the possibility of another process updating target between
25+
* must be completed without the possibility of another process updating target between
2626
* the time of the fetch and the update.
2727
*/
2828
#if OSHMEM_PROFILING

oshmem/shmem/c/shmem_fxor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* These routines perform an atomic fetch-and-xor operation.
2323
* The fetch and xor routines retrieve the value at address target on PE pe, and update
2424
* target with the result of 'xor' operation value to the retrieved value. The operation
25-
* must be completed * without the possibility of another process updating target between
25+
* must be completed without the possibility of another process updating target between
2626
* the time of the fetch and the update.
2727
*/
2828
#if OSHMEM_PROFILING

oshmem/shmem/c/shmem_or.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/*
2121
* These routines perform an atomic 'or' operation.
22-
* The atomic 'or' routines cwoperates 'or' value to the data at address target on PE pe.
22+
* The atomic 'or' routines operates 'or' value to the data at address target on PE pe.
2323
* The operation must be completed without the possibility of another process updating
2424
* target between the time of the fetch or the update.
2525
*/

oshmem/shmem/c/shmem_xor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/*
2121
* These routines perform an atomic 'xor' operation.
22-
* The atomic 'xor' routines cwoperates 'xor' value to the data at address target on PE pe.
22+
* The atomic 'xor' routines operates 'xor' value to the data at address target on PE pe.
2323
* The operation must be completed without the possibility of another process updating
2424
* target between the time of the fetch xor the update.
2525
*/

0 commit comments

Comments
 (0)