1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2022 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#ifndef CSHIMS_PLATFORM_SHIMS
#define CSHIMS_PLATFORM_SHIMS
#include "_CShimsTargetConditionals.h"
#include "_CShimsMacros.h"
#if __has_include(<stddef.h>)
#include <stddef.h>
#endif
#if __has_include(<libkern/OSThermalNotification.h>)
#include <libkern/OSThermalNotification.h>
#endif
// Workaround for inability to import `security.h` as a module in WinSDK
#if defined(_WIN32)
#include <windows.h>
#define SECURITY_WIN32
#include <security.h>
#endif
INTERNAL char * _Nullable * _Nullable _platform_shims_get_environ(void);
INTERNAL void _platform_shims_lock_environ(void);
INTERNAL void _platform_shims_unlock_environ(void);
#if __has_include(<mach/vm_page_size.h>)
#include <mach/vm_page_size.h>
INTERNAL vm_size_t _platform_shims_vm_size(void);
#endif
#if __has_include(<mach/mach.h>)
#include <mach/mach.h>
INTERNAL mach_port_t _platform_mach_task_self(void);
#endif
#if __has_include(<libkern/OSThermalNotification.h>)
typedef enum {
#if TARGET_OS_OSX || TARGET_OS_MACCATALYST
_kOSThermalPressureLevelNominal = kOSThermalPressureLevelNominal,
_kOSThermalPressureLevelModerate = kOSThermalPressureLevelModerate,
_kOSThermalPressureLevelHeavy = kOSThermalPressureLevelHeavy,
_kOSThermalPressureLevelTrapping = kOSThermalPressureLevelTrapping,
_kOSThermalPressureLevelSleeping = kOSThermalPressureLevelSleeping
#else
_kOSThermalPressureLevelNominal = kOSThermalPressureLevelNominal,
_kOSThermalPressureLevelLight = kOSThermalPressureLevelLight,
_kOSThermalPressureLevelModerate = kOSThermalPressureLevelModerate,
_kOSThermalPressureLevelHeavy = kOSThermalPressureLevelHeavy,
_kOSThermalPressureLevelTrapping = kOSThermalPressureLevelTrapping,
_kOSThermalPressureLevelSleeping = kOSThermalPressureLevelSleeping
#endif
} _platform_shims_OSThermalPressureLevel;
INTERNAL const char * _Nonnull _platform_shims_kOSThermalNotificationPressureLevelName(void);
#endif
#endif /* CSHIMS_PLATFORM_SHIMS */
|