Edit

kc3-lang/angle/util/system_utils.h

Branch :

  • Show log

    Commit

  • Author : Corentin Wallez
    Date : 2015-05-27 12:50:55
    Hash : 3c85635d
    Message : Add SetLowPriorityProcess to utils and use it in dEQP support This provides a cross-platform way to make sure dEQP runs in a low priority process. BUG=angleproject:892 Change-Id: I0d12f1eacb78be43edcdb6622f945734c0b377ff Reviewed-on: https://chromium-review.googlesource.com/273595 Reviewed-by: Jamie Madill <jmadill@chromium.org> Tested-by: Corentin Wallez <cwallez@chromium.org>

  • util/system_utils.h
  • //
    // Copyright (c) 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.
    //
    
    // system_utils.h: declaration of OS-specific utility functions
    
    #ifndef SAMPLE_UTIL_PATH_UTILS_H
    #define SAMPLE_UTIL_PATH_UTILS_H
    
    #include <string>
    
    namespace angle
    {
    
    std::string GetExecutablePath();
    std::string GetExecutableDirectory();
    
    // Cross platform equivalent of the Windows Sleep function
    void Sleep(unsigned int milliseconds);
    
    void SetLowPriorityProcess();
    
    } // namespace angle
    
    #endif // SAMPLE_UTIL_PATH_UTILS_H