// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Description: Common functions for NACL and all Linux and // Linux-derivatives. #include "base/threading/platform_thread.h" namespace base { size_t GetDefaultThreadStackSize(const pthread_attr_t& attributes) { … } void InitThreading() { … } void TerminateOnThread() { … } } // namespace base