blob: fa9bb914e3dbe55122239e404650a9ca5263fc7a [file] [log] [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "partition_alloc/partition_alloc_base/threading/platform_thread_for_testing.h"
#include <pthread.h>
#include <stddef.h>
namespace partition_alloc::internal::base {
void InitThreading() {}
void TerminateOnThread() {}
size_t GetDefaultThreadStackSize(const pthread_attr_t& attributes) {
return 0;
}
} // namespace partition_alloc::internal::base