// // Copyright 2014 The ANGLE Project Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. //
// tls.cpp: Simple cross-platform interface for thread local storage.
#include"common/tls.h"
#include"common/debug.h"
#ifdef ANGLE_ENABLE_WINDOWS_UWP # include <map> # include <mutex> # include <set> # include <vector>
# include <Windows.System.Threading.h> # include <wrl/async.h> # include <wrl/client.h>
using namespace std; using namespace Windows::Foundation; using namespace ABI::Windows::System::Threading;
// Thread local storage for Windows Store support typedef vector<void *> ThreadLocalData;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.