@@ -346,7 +346,7 @@ pg_atomic_compare_exchange_u32(volatile pg_atomic_uint32 *ptr,
346
346
/*
347
347
* pg_atomic_fetch_add_u32 - atomically add to variable
348
348
*
349
- * Returns the the value of ptr before the arithmetic operation.
349
+ * Returns the value of ptr before the arithmetic operation.
350
350
*
351
351
* Full barrier semantics.
352
352
*/
@@ -360,8 +360,8 @@ pg_atomic_fetch_add_u32(volatile pg_atomic_uint32 *ptr, int32 add_)
360
360
/*
361
361
* pg_atomic_fetch_sub_u32 - atomically subtract from variable
362
362
*
363
- * Returns the the value of ptr before the arithmetic operation. Note that
364
- * sub_ may not be INT_MIN due to platform limitations.
363
+ * Returns the value of ptr before the arithmetic operation. Note that sub_
364
+ * may not be INT_MIN due to platform limitations.
365
365
*
366
366
* Full barrier semantics.
367
367
*/
@@ -376,7 +376,7 @@ pg_atomic_fetch_sub_u32(volatile pg_atomic_uint32 *ptr, int32 sub_)
376
376
/*
377
377
* pg_atomic_fetch_and_u32 - atomically bit-and and_ with variable
378
378
*
379
- * Returns the the value of ptr before the arithmetic operation.
379
+ * Returns the value of ptr before the arithmetic operation.
380
380
*
381
381
* Full barrier semantics.
382
382
*/
@@ -390,7 +390,7 @@ pg_atomic_fetch_and_u32(volatile pg_atomic_uint32 *ptr, uint32 and_)
390
390
/*
391
391
* pg_atomic_fetch_or_u32 - atomically bit-or or_ with variable
392
392
*
393
- * Returns the the value of ptr before the arithmetic operation.
393
+ * Returns the value of ptr before the arithmetic operation.
394
394
*
395
395
* Full barrier semantics.
396
396
*/
@@ -404,7 +404,7 @@ pg_atomic_fetch_or_u32(volatile pg_atomic_uint32 *ptr, uint32 or_)
404
404
/*
405
405
* pg_atomic_add_fetch_u32 - atomically add to variable
406
406
*
407
- * Returns the the value of ptr after the arithmetic operation.
407
+ * Returns the value of ptr after the arithmetic operation.
408
408
*
409
409
* Full barrier semantics.
410
410
*/
@@ -418,8 +418,8 @@ pg_atomic_add_fetch_u32(volatile pg_atomic_uint32 *ptr, int32 add_)
418
418
/*
419
419
* pg_atomic_sub_fetch_u32 - atomically subtract from variable
420
420
*
421
- * Returns the the value of ptr after the arithmetic operation. Note that sub_
422
- * may not be INT_MIN due to platform limitations.
421
+ * Returns the value of ptr after the arithmetic operation. Note that sub_ may
422
+ * not be INT_MIN due to platform limitations.
423
423
*
424
424
* Full barrier semantics.
425
425
*/
0 commit comments