mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
The SDK overlays have been provided in the Apple SDKs for many years, and the interface and implementation has diverged in more recent years such that trying to build the Swift version no longer works. Remove all of the dead code. rdar://151889154
138 lines
4.8 KiB
Swift
138 lines
4.8 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Tty ioctl request constants, needed only on FreeBSD.
|
|
|
|
// Constants available on all platforms, also available on Linux.
|
|
#if os(FreeBSD) || os(Haiku)
|
|
|
|
/// Set exclusive use of tty.
|
|
public var TIOCEXCL: UInt { return 0x2000740d }
|
|
/// Reset exclusive use of tty.
|
|
public var TIOCNXCL: UInt { return 0x2000740e }
|
|
/// Flush buffers.
|
|
public var TIOCFLUSH: UInt { return 0x80047410 }
|
|
/// Get line discipline.
|
|
public var TIOCGETD: UInt { return 0x4004741a }
|
|
/// Set line discipline.
|
|
public var TIOCSETD: UInt { return 0x8004741b }
|
|
/// Set break bit.
|
|
public var TIOCSBRK: UInt { return 0x2000747b }
|
|
/// Clear break bit.
|
|
public var TIOCCBRK: UInt { return 0x2000747a }
|
|
/// Set data terminal ready.
|
|
public var TIOCSDTR: UInt { return 0x20007479 }
|
|
/// Clear data terminal ready.
|
|
public var TIOCCDTR: UInt { return 0x20007478 }
|
|
/// Get pgrp of tty.
|
|
public var TIOCGPGRP: UInt { return 0x40047477 }
|
|
/// Set pgrp of tty.
|
|
public var TIOCSPGRP: UInt { return 0x80047476 }
|
|
/// Output queue size.
|
|
public var TIOCOUTQ: UInt { return 0x40047473 }
|
|
/// Simulate terminal input.
|
|
public var TIOCSTI: UInt { return 0x80017472 }
|
|
/// Void tty association.
|
|
public var TIOCNOTTY: UInt { return 0x20007471 }
|
|
/// Pty: set/clear packet mode.
|
|
public var TIOCPKT: UInt { return 0x80047470 }
|
|
/// Stop output, like `^S`.
|
|
public var TIOCSTOP: UInt { return 0x2000746f }
|
|
/// Start output, like `^Q`.
|
|
public var TIOCSTART: UInt { return 0x2000746e }
|
|
/// Set all modem bits.
|
|
public var TIOCMSET: UInt { return 0x8004746d }
|
|
/// Bis modem bits.
|
|
public var TIOCMBIS: UInt { return 0x8004746c }
|
|
/// Bic modem bits.
|
|
public var TIOCMBIC: UInt { return 0x8004746b }
|
|
/// Get all modem bits.
|
|
public var TIOCMGET: UInt { return 0x4004746a }
|
|
/// Get window size.
|
|
public var TIOCGWINSZ: UInt { return 0x40087468 }
|
|
/// Set window size.
|
|
public var TIOCSWINSZ: UInt { return 0x80087467 }
|
|
/// Pty: set/clr usr cntl mode.
|
|
public var TIOCUCNTL: UInt { return 0x80047466 }
|
|
/// Simulate `^T` status message.
|
|
public var TIOCSTAT: UInt { return 0x20007465 }
|
|
/// Become virtual console.
|
|
public var TIOCCONS: UInt { return 0x80047462 }
|
|
/// Become controlling tty.
|
|
public var TIOCSCTTY: UInt { return 0x20007461 }
|
|
/// Pty: external processing.
|
|
public var TIOCEXT: UInt { return 0x80047460 }
|
|
/// Wait till output drained.
|
|
public var TIOCDRAIN: UInt { return 0x2000745e }
|
|
/// Modem: set wait on close.
|
|
public var TIOCMSDTRWAIT: UInt { return 0x8004745b }
|
|
/// Modem: get wait on close.
|
|
public var TIOCMGDTRWAIT: UInt { return 0x4004745a }
|
|
/// Enable/get timestamp of last input event.
|
|
public var TIOCTIMESTAMP: UInt { return 0x40107459 }
|
|
/// Set ttywait timeout.
|
|
public var TIOCSDRAINWAIT: UInt { return 0x80047457 }
|
|
/// Get ttywait timeout.
|
|
public var TIOCGDRAINWAIT: UInt { return 0x40047456 }
|
|
|
|
// From ioctl_compat.h.
|
|
|
|
/// Hang up on last close.
|
|
public var TIOCHPCL: UInt { return 0x20007402 }
|
|
/// Get parameters -- gtty.
|
|
public var TIOCGETP: UInt { return 0x40067408 }
|
|
/// Set parameters -- stty.
|
|
public var TIOCSETP: UInt { return 0x80067409 }
|
|
/// As above, but no flushtty.
|
|
public var TIOCSETN: UInt { return 0x8006740a }
|
|
/// Set special characters.
|
|
public var TIOCSETC: UInt { return 0x80067411 }
|
|
/// Get special characters.
|
|
public var TIOCGETC: UInt { return 0x40067412 }
|
|
/// Bis local mode bits.
|
|
public var TIOCLBIS: UInt { return 0x8004747f }
|
|
/// Bic local mode bits.
|
|
public var TIOCLBIC: UInt { return 0x8004747e }
|
|
/// Set entire local mode word.
|
|
public var TIOCLSET: UInt { return 0x8004747d }
|
|
/// Get local modes.
|
|
public var TIOCLGET: UInt { return 0x4004747c }
|
|
/// Set local special chars.
|
|
public var TIOCSLTC: UInt { return 0x80067475 }
|
|
/// Get local special chars.
|
|
public var TIOCGLTC: UInt { return 0x40067474 }
|
|
|
|
#endif
|
|
|
|
|
|
// FreeBSD specific values and constants available only on FreeBSD.
|
|
#if os(FreeBSD)
|
|
|
|
/// Get termios struct.
|
|
public var TIOCGETA: UInt { return 0x402c7413 }
|
|
/// Set termios struct.
|
|
public var TIOCSETA: UInt { return 0x802c7414 }
|
|
/// Drain output, set.
|
|
public var TIOCSETAW: UInt { return 0x802c7415 }
|
|
/// Drn out, fls in, set.
|
|
public var TIOCSETAF: UInt { return 0x802c7416 }
|
|
/// Pty: generate signal.
|
|
public var TIOCSIG: UInt { return 0x2004745f }
|
|
/// Get pts number.
|
|
public var TIOCGPTN: UInt { return 0x4004740f }
|
|
/// Pts master validation.
|
|
public var TIOCPTMASTER: UInt { return 0x2000741c }
|
|
/// Get session id.
|
|
public var TIOCGSID: UInt { return 0x40047463 }
|
|
|
|
#endif
|