-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[master] Update dependencies from dotnet/arcade (#44835)
* Update dependencies from https://github.com/dotnet/arcade build 20201113.2 Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Build.Tasks.SharedFramework.Sdk , Microsoft.DotNet.Build.Tasks.TargetFramework.Sdk , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.GenAPI , Microsoft.DotNet.GenFacades , Microsoft.DotNet.XUnitExtensions , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.VersionTools.Tasks , Microsoft.DotNet.XUnitConsoleRunner , Microsoft.DotNet.ApiCompat From Version 6.0.0-beta.20552.5 -> To Version 6.0.0-beta.20563.2 * Update global.json Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Viktor Hofer <[email protected]> Co-authored-by: Juan Hoyos <[email protected]>
- Loading branch information
1 parent
88ecbab
commit 30769e8
Showing
10 changed files
with
108 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,4 +27,4 @@ | |
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
diff -u -r a/usr/include/urcu/uatomic/generic.h b/usr/include/urcu/uatomic/generic.h | ||
--- a/usr/include/urcu/uatomic/generic.h 2014-10-22 15:00:58.000000000 -0700 | ||
+++ b/usr/include/urcu/uatomic/generic.h 2020-10-30 21:38:28.550000000 -0700 | ||
@@ -69,10 +69,10 @@ | ||
#endif | ||
#ifdef UATOMIC_HAS_ATOMIC_SHORT | ||
case 2: | ||
- return __sync_val_compare_and_swap_2(addr, old, _new); | ||
+ return __sync_val_compare_and_swap_2((uint16_t*) addr, old, _new); | ||
#endif | ||
case 4: | ||
- return __sync_val_compare_and_swap_4(addr, old, _new); | ||
+ return __sync_val_compare_and_swap_4((uint32_t*) addr, old, _new); | ||
#if (CAA_BITS_PER_LONG == 64) | ||
case 8: | ||
return __sync_val_compare_and_swap_8(addr, old, _new); | ||
@@ -109,7 +109,7 @@ | ||
return; | ||
#endif | ||
case 4: | ||
- __sync_and_and_fetch_4(addr, val); | ||
+ __sync_and_and_fetch_4((uint32_t*) addr, val); | ||
return; | ||
#if (CAA_BITS_PER_LONG == 64) | ||
case 8: | ||
@@ -148,7 +148,7 @@ | ||
return; | ||
#endif | ||
case 4: | ||
- __sync_or_and_fetch_4(addr, val); | ||
+ __sync_or_and_fetch_4((uint32_t*) addr, val); | ||
return; | ||
#if (CAA_BITS_PER_LONG == 64) | ||
case 8: | ||
@@ -187,7 +187,7 @@ | ||
return __sync_add_and_fetch_2(addr, val); | ||
#endif | ||
case 4: | ||
- return __sync_add_and_fetch_4(addr, val); | ||
+ return __sync_add_and_fetch_4((uint32_t*) addr, val); | ||
#if (CAA_BITS_PER_LONG == 64) | ||
case 8: | ||
return __sync_add_and_fetch_8(addr, val); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.