Skip to content

Commit

Permalink
Merge branch 'async-support' of https://github.com/Microsoft/FASTER i…
Browse files Browse the repository at this point in the history
…nto async-support
  • Loading branch information
badrishc committed Aug 9, 2019
2 parents d72c92a + 869a88e commit e5a4859
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions cc/test/in_memory_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ TEST(InMemFaster, UpsertRead_ResizeValue_Concurrent) {
return false;
}
inline void unlock(bool replaced) {
if(replaced) {
if(!replaced) {
// Just turn off "locked" bit and increase gen number.
uint64_t sub_delta = ((uint64_t)1 << 62) - 1;
control_.fetch_sub(sub_delta);
Expand Down Expand Up @@ -1409,7 +1409,7 @@ TEST(InMemFaster, Rmw_ResizeValue_Concurrent) {
return false;
}
inline void unlock(bool replaced) {
if(replaced) {
if(!replaced) {
// Just turn off "locked" bit and increase gen number.
uint64_t sub_delta = ((uint64_t)1 << 62) - 1;
control_.fetch_sub(sub_delta);
Expand Down
6 changes: 3 additions & 3 deletions cs/src/core/FASTER.core.debug.nuspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>FASTER.Debug</id>
<id>Microsoft.FASTER.Debug</id>
<version>$version$</version>
<title>FASTER.Debug</title>
<title>FASTER (Debug)</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<projectUrl>https://github.com/Microsoft/FASTER</projectUrl>
Expand Down Expand Up @@ -31,4 +31,4 @@
<file src="bin\AnyCPU\Debug\netstandard2.0\FASTER.core.pdb" target="lib\netstandard2.0" />
<file src="bin\AnyCPU\Debug\netstandard2.0\FASTER.core.xml" target="lib\netstandard2.0" />
</files>
</package>
</package>
4 changes: 2 additions & 2 deletions cs/src/core/FASTER.core.nuspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>FASTER</id>
<id>Microsoft.FASTER</id>
<version>$version$</version>
<title>FASTER</title>
<authors>Microsoft</authors>
Expand Down Expand Up @@ -31,4 +31,4 @@
<file src="bin\AnyCPU\Release\netstandard2.0\FASTER.core.pdb" target="lib\netstandard2.0" />
<file src="bin\AnyCPU\Release\netstandard2.0\FASTER.core.xml" target="lib\netstandard2.0" />
</files>
</package>
</package>
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>FASTER.devices.AzureStorageDevice</id>
<id>Microsoft.FASTER.devices.AzureStorageDevice</id>
<version>$version$</version>
<title>FASTER.devices.AzureStorageDevice</title>
<title>Azure storage device for FASTER</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<projectUrl>https://github.com/Microsoft/FASTER</projectUrl>
Expand All @@ -17,11 +17,11 @@
<dependencies>
<group targetFramework="net46">
<dependency id="Microsoft.Azure.Storage.Blob" version="10.0.3" />
<dependency id="FASTER" version="$version$" />
<dependency id="Microsoft.FASTER" version="$version$" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="Microsoft.Azure.Storage.Blob" version="10.0.3" />
<dependency id="FASTER" version="$version$" />
<dependency id="Microsoft.FASTER" version="$version$" />
</group>
</dependencies>
</metadata>
Expand All @@ -33,4 +33,4 @@
<file src="bin\AnyCPU\Release\netstandard2.0\FASTER.devices.AzureStorageDevice.pdb" target="lib\netstandard2.0" />
<file src="bin\AnyCPU\Release\netstandard2.0\FASTER.devices.AzureStorageDevice.xml" target="lib\netstandard2.0" />
</files>
</package>
</package>

0 comments on commit e5a4859

Please sign in to comment.