bcma: claim only 14e4:4365 PCI Dell card with SoftMAC BCM43142
[linux/fpc-iii.git] / tools / perf / util / term.c
blob90b47d8aa19c41305f4b0823e459d6e60f19f3f5
1 #include "util.h"
3 void get_term_dimensions(struct winsize *ws)
5 char *s = getenv("LINES");
7 if (s != NULL) {
8 ws->ws_row = atoi(s);
9 s = getenv("COLUMNS");
10 if (s != NULL) {
11 ws->ws_col = atoi(s);
12 if (ws->ws_row && ws->ws_col)
13 return;
16 #ifdef TIOCGWINSZ
17 if (ioctl(1, TIOCGWINSZ, ws) == 0 &&
18 ws->ws_row && ws->ws_col)
19 return;
20 #endif
21 ws->ws_row = 25;
22 ws->ws_col = 80;
25 void set_term_quiet_input(struct termios *old)
27 struct termios tc;
29 tcgetattr(0, old);
30 tc = *old;
31 tc.c_lflag &= ~(ICANON | ECHO);
32 tc.c_cc[VMIN] = 0;
33 tc.c_cc[VTIME] = 0;
34 tcsetattr(0, TCSANOW, &tc);