1 // Plugin.cpp (Oclgrind)
2 // Copyright (c) 2013-2019, James Price and Simon McIntosh-Smith,
3 // University of Bristol. All rights reserved.
4 //
5 // This program is provided under a three-clause BSD license. For full
6 // license terms please see the LICENSE file distributed with this
7 // source code.
8 
9 #include "Plugin.h"
10 
11 using namespace oclgrind;
12 
Plugin(const Context * context)13 Plugin::Plugin(const Context* context) : m_context(context) {}
14 
~Plugin()15 Plugin::~Plugin() {}
16 
isThreadSafe() const17 bool Plugin::isThreadSafe() const
18 {
19   return true;
20 }
21