Files
swift-mirror/stdlib/public/RuntimeModule/modules/OS/Libc.h
Alastair Houghton d13988bd5f [Backtracing][Windows] Initial Windows support.
This doesn't have a working symbolicator yet, but it does build and
it can obtain a basic backtrace.

It also doesn't include a working `swift-backtrace` program yet.

rdar://101623384
2026-02-03 18:23:29 +00:00

69 lines
1.8 KiB
C++

//===--- Libc.h - Imports from the C library --------------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2023 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
//
//===----------------------------------------------------------------------===//
//
// Extra utilities for libc
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_BACKTRACING_LIBC_H
#define SWIFT_BACKTRACING_LIBC_H
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#ifdef _WIN32
#include <io.h>
#endif
// .. Swift affordances ........................................................
#ifdef __cplusplus
namespace swift {
namespace runtime {
namespace backtrace {
#endif
/* open() is usually declared as a variadic function; these don't import into
Swift. */
static inline int _swift_open(const char *filename, int oflag, int mode) {
#ifdef _WIN32
int pmode = 0;
if (mode & 0222)
pmode |= _S_IWRITE;
if (mode & 0444)
pmode |= _S_IREAD;
int fd;
errno_t err = _sopen_s(&fd, filename, oflag, _SH_DENYNO, pmode);
if (err != 0) {
return -1;
}
return fd;
#else
return open(filename, oflag, mode);
#endif
}
/* errno is typically not going to be easily accessible (it's often a macro),
so add a get_errno() function to do that. */
static inline int _swift_get_errno() { return errno; }
static void _swift_set_errno(int err) { errno = err; }
#ifdef __cplusplus
} // namespace backtrace
} // namespace runtime
} // namespace swift
#endif
#endif // SWIFT_BACKTRACING_LIBC_H