summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2015-01-26 22:24:28 +0100
committerGravatar wuestholz <unknown>2015-01-26 22:24:28 +0100
commit34a68b3dca1fff4cabc86bc692b22b4a88c5152c (patch)
tree0780e02acc536285f8f1ff0eafd92e0c4ee96531 /Source/Core
parent40537b5a8339208370894ef0771d288fda351068 (diff)
Minor change
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Absy.cs4
-rw-r--r--Source/Core/AbsyQuant.cs3
-rw-r--r--Source/Core/Util.cs3
3 files changed, 4 insertions, 6 deletions
diff --git a/Source/Core/Absy.cs b/Source/Core/Absy.cs
index 817897b7..041993a7 100644
--- a/Source/Core/Absy.cs
+++ b/Source/Core/Absy.cs
@@ -128,7 +128,7 @@ namespace Microsoft.Boogie {
public Absy(IToken tok) {
Contract.Requires(tok != null);
this._tok = tok;
- this.uniqueId = AbsyNodeCount++;
+ this.uniqueId = System.Threading.Interlocked.Increment(ref AbsyNodeCount);
}
private static int AbsyNodeCount = 0;
@@ -162,7 +162,7 @@ namespace Microsoft.Boogie {
public virtual Absy Clone() {
Contract.Ensures(Contract.Result<Absy>() != null);
Absy/*!*/ result = cce.NonNull((Absy/*!*/)this.MemberwiseClone());
- result.uniqueId = AbsyNodeCount++; // BUGBUG??
+ result.uniqueId = System.Threading.Interlocked.Increment(ref AbsyNodeCount); // BUGBUG??
if (InternalNumberedMetadata != null) {
// This should probably use the lock
diff --git a/Source/Core/AbsyQuant.cs b/Source/Core/AbsyQuant.cs
index c5b7b317..e7783943 100644
--- a/Source/Core/AbsyQuant.cs
+++ b/Source/Core/AbsyQuant.cs
@@ -624,8 +624,7 @@ namespace Microsoft.Boogie {
static int SkolemIds = 0;
public static int GetNextSkolemId() {
- SkolemIds++;
- return SkolemIds;
+ return System.Threading.Interlocked.Increment(ref SkolemIds);
}
public readonly int SkolemId;
diff --git a/Source/Core/Util.cs b/Source/Core/Util.cs
index 73008742..f8428942 100644
--- a/Source/Core/Util.cs
+++ b/Source/Core/Util.cs
@@ -676,8 +676,7 @@ namespace Microsoft.Boogie {
// any filename extension specified by the user. We base our
// calculations on that there is at most one occurrence of @PROC@.
if (180 <= fileName.Length - 6 + pn.Length) {
- pn = pn.Substring(0, Math.Max(180 - (fileName.Length - 6), 0)) + "-n" + sequenceNumber;
- sequenceNumber++;
+ pn = pn.Substring(0, Math.Max(180 - (fileName.Length - 6), 0)) + "-n" + System.Threading.Interlocked.Increment(ref sequenceNumber);
}
return fileName.Replace("@PROC@", pn);