michael@0: /* michael@0: * Copyright 2013 Google Inc. michael@0: * michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. michael@0: */ michael@0: michael@0: #include "SkTLS.h" michael@0: michael@0: static void* gSpecific = NULL; michael@0: michael@0: void* SkTLS::PlatformGetSpecific(bool) { michael@0: return gSpecific; michael@0: } michael@0: michael@0: void SkTLS::PlatformSetSpecific(void* ptr) { michael@0: gSpecific = ptr; michael@0: }