1 //===-- Platform.h ----------------------------------------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #ifndef lldb_Platform_h_
11 #define lldb_Platform_h_
15 #include "lldb/Host/HostGetOpt.h"
20 #include "lldb/Host/windows/windows.h"
27 typedef unsigned char cc_t
;
28 typedef unsigned int speed_t
;
29 typedef unsigned int tcflag_t
;
35 #define TIOCGWINSZ 0x5413
43 // tcsetattr arguments
48 tcflag_t c_iflag
; // input mode flags
49 tcflag_t c_oflag
; // output mode flags
50 tcflag_t c_cflag
; // control mode flags
51 tcflag_t c_lflag
; // local mode flags
52 cc_t c_line
; // line discipline
53 cc_t c_cc
[NCCS
]; // control characters
54 speed_t c_ispeed
; // input speed
55 speed_t c_ospeed
; // output speed
64 #define snprintf _snprintf
65 #define PATH_MAX MAX_PATH
68 #define STDIN_FILENO 0
70 extern int ioctl(int d
, int request
, ...);
71 extern int kill(pid_t pid
, int sig
);
72 extern int tcsetattr(int fd
, int optional_actions
,
73 const struct termios
*termios_p
);
74 extern int tcgetattr(int fildes
, struct termios
*termios_p
);
77 #include "lldb/Host/HostGetOpt.h"
81 #include <sys/ioctl.h>
89 #endif // lldb_Platform_h_