blob: 87bd71e10b8859e0ab84519e5082c3a8a8c67c16 [file] [log] [blame]
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/public/utility/utility_thread.h"
#include "base/lazy_instance.h"
#include "base/threading/thread_local.h"
namespace content {
// Keep the global UtilityThread in a TLS slot so it is impossible to access
// incorrectly from the wrong thread.
static base::LazyInstance<base::ThreadLocalPointer<UtilityThread> >::Leaky
lazy_tls = LAZY_INSTANCE_INITIALIZER;
UtilityThread* UtilityThread::Get() {
return lazy_tls.Pointer()->Get();
}
UtilityThread::UtilityThread() {
lazy_tls.Pointer()->Set(this);
}
UtilityThread::~UtilityThread() {
lazy_tls.Pointer()->Set(NULL);
}
} // namespace content