BMR, Use your Brain, Semi/Semi2k.

This commit is contained in:
Marcel Keller
2019-04-30 17:24:11 +10:00
parent 9cde9548d2
commit b5d8123ae0
214 changed files with 4233 additions and 1550 deletions

View File

@@ -6,9 +6,6 @@
#include "Thread.h"
#include "Program.h"
#include "ReplicatedSecret.h"
#include "Secret.h"
#include "Networking/CryptoPlayer.h"
namespace GC
@@ -76,7 +73,7 @@ void Thread<T>::run()
template<class T>
void Thread<T>::run(Program<T>& program)
{
while (program.execute(processor) != DONE_BREAK)
while (program.execute(processor, master.memory) != DONE_BREAK)
;
}