mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
//===--- OSOverlayShims.h ---------------------------------------*- C++ -*-===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2017 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 SWIFT_STDLIB_SHIMS_OS_OVERLAY_H
|
|
#define SWIFT_STDLIB_SHIMS_OS_OVERLAY_H
|
|
|
|
#include <os/log.h>
|
|
#include <stdarg.h>
|
|
|
|
extern const void * _Nullable _swift_os_log_return_address(void);
|
|
|
|
extern void _swift_os_log(const void * _Nullable dso, const void * _Nullable retaddr,
|
|
os_log_t _Nonnull oslog, os_log_type_t type,
|
|
const char * _Nonnull format, va_list args);
|
|
|
|
static inline os_log_t _Nonnull
|
|
_swift_os_log_default(void) {
|
|
return OS_LOG_DEFAULT;
|
|
}
|
|
|
|
static inline os_log_t _Nonnull
|
|
_swift_os_log_disabled(void) {
|
|
return OS_LOG_DISABLED;
|
|
}
|
|
|
|
#endif // SWIFT_STDLIB_SHIMS_OS_OVERLAY_H
|
|
|