dietlibc needs termios.h for struct winsize -- thanks Thomas Ogrisegg
This commit is contained in:
parent
6a304370f8
commit
7767733812
3
NEWS
3
NEWS
@ -1,6 +1,7 @@
|
||||
procps-3.2.5 --> procps-3.2.6
|
||||
|
||||
top can do per-task display -- thanks John Blackwood rh114012
|
||||
dietlibc needs termios.h for struct winsize -- thanks Thomas Ogrisegg
|
||||
top: can do per-task display -- thanks John Blackwood rh114012
|
||||
more MIPS crud -- thanks Jim Gifford and Ryan Oliver
|
||||
begin prep for setuid
|
||||
top: fix %CPU max on 2..9 CPU SMP -- thanks Ga*tan LEURENT
|
||||
|
@ -258,6 +258,7 @@ static void parse_bsd_option(void){
|
||||
}
|
||||
|
||||
#if 0
|
||||
#include <termios.h>
|
||||
/* not used yet */
|
||||
static void choose_dimensions(void){
|
||||
struct winsize ws;
|
||||
|
@ -9,6 +9,7 @@
|
||||
* GNU Library General Public License for more details.
|
||||
*/
|
||||
#include <stdlib.h>
|
||||
#include <termios.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/ioctl.h>
|
||||
|
1
vmstat.c
1
vmstat.c
@ -19,6 +19,7 @@
|
||||
#include <assert.h>
|
||||
#include <fcntl.h>
|
||||
#include <limits.h>
|
||||
#include <termios.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/ioctl.h>
|
||||
|
1
w.c
1
w.c
@ -27,6 +27,7 @@
|
||||
#include <unistd.h>
|
||||
#include <utmp.h>
|
||||
#include <locale.h>
|
||||
#include <termios.h>
|
||||
|
||||
static int ignoreuser = 0; /* for '-u' */
|
||||
static proc_t **procs; /* our snapshot of the process table */
|
||||
|
Loading…
Reference in New Issue
Block a user