Skip to content

Commit

Permalink
wip: YL random fix
Browse files Browse the repository at this point in the history
  • Loading branch information
branylagaffe committed Jul 26, 2024
1 parent da4e67b commit 54496a1
Show file tree
Hide file tree
Showing 14 changed files with 208 additions and 220 deletions.
2 changes: 1 addition & 1 deletion components/CMPCache/SimpleDirectoryState.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
#define __SIMPLE_DIRECTORY_STATE_HPP__
#include <bitset>
#include <boost/dynamic_bitset.hpp>
#define MAX_NUM_SHARERS 512
#define MAX_NUM_SHARERS 64

namespace nCMPCache {

Expand Down
2 changes: 1 addition & 1 deletion components/CommonQEMU/Serializers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#include <boost/serialization/tracking.hpp>
#include <boost/lambda/lambda.hpp>

#define MAX_NUM_SHARERS 512
#define MAX_NUM_SHARERS 64

namespace boost {
namespace serialization {
Expand Down
3 changes: 2 additions & 1 deletion components/CommonQEMU/Slices/AbstractInstruction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ struct AbstractInstruction : public boost::counted_base
virtual bool isExclusive() const { return theExclusive; }
virtual void setExclusive() { theExclusive = true; }
virtual void describe(std::ostream& anOstream) const;
virtual void forceResync() = 0;
virtual bool resync() const = 0;
virtual void forceResync(bool r = true) = 0;
virtual bool haltDispatch() const;
virtual void setFetchTransactionTracker(boost::intrusive_ptr<TransactionTracker> aTransaction)
{
Expand Down
Loading

0 comments on commit 54496a1

Please sign in to comment.