// // Copyright 2015 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. // // system_utils_linux.cpp: Implementation of OS-specific functions for Linux #include "system_utils.h" #include <sys/stat.h> #include <sys/time.h> #include <sys/types.h> #include <unistd.h> #include <array> namespace angle { std::string GetExecutablePath() { … } std::string GetExecutableDirectory() { … } const char *GetSharedLibraryExtension() { … } double GetCurrentSystemTime() { … } void SetCurrentThreadName(const char *name) { … } } // namespace angle