tolerate IA-64 headers w/o PAGE_SIZE
This commit is contained in:
parent
aae2db6f9b
commit
34c4da73d1
1
NEWS
1
NEWS
@ -3,6 +3,7 @@ procps-3.2.1 --> procps-3.2.2
|
|||||||
move striping from install command to CFLAGS
|
move striping from install command to CFLAGS
|
||||||
now using gcc -fweb and -frename-registers options
|
now using gcc -fweb and -frename-registers options
|
||||||
avoid warning about -lncurses when not linking -- thanks FLWM
|
avoid warning about -lncurses when not linking -- thanks FLWM
|
||||||
|
tolerate IA-64 headers without PAGE_SIZE
|
||||||
watch: allow sub-second intervals -- thanks Thomas Stewart
|
watch: allow sub-second intervals -- thanks Thomas Stewart
|
||||||
sysctl: -q option
|
sysctl: -q option
|
||||||
sysctl: better error handling of failed writes
|
sysctl: better error handling of failed writes
|
||||||
|
@ -19,10 +19,10 @@
|
|||||||
#include "version.h"
|
#include "version.h"
|
||||||
#include "devname.h"
|
#include "devname.h"
|
||||||
|
|
||||||
#include <asm/page.h>
|
// This is the buffer size for a tty name. Any path is legal,
|
||||||
#ifndef PAGE_SIZE
|
// which makes PAGE_SIZE appropriate (see kernel source), but
|
||||||
#define PAGE_SIZE (sizeof(long)*1024)
|
// that is only 99% portable and utmp only holds 32 anyway.
|
||||||
#endif
|
#define NAME_SIZE 128
|
||||||
|
|
||||||
/* Who uses what:
|
/* Who uses what:
|
||||||
*
|
*
|
||||||
@ -216,7 +216,7 @@ static int link_name(char *restrict const buf, unsigned maj, unsigned min, int p
|
|||||||
char path[32];
|
char path[32];
|
||||||
int count;
|
int count;
|
||||||
sprintf(path, "/proc/%d/%s", pid, name); /* often permission denied */
|
sprintf(path, "/proc/%d/%s", pid, name); /* often permission denied */
|
||||||
count = readlink(path,buf,PAGE_SIZE-1);
|
count = readlink(path,buf,NAME_SIZE-1);
|
||||||
if(count == -1) return 0;
|
if(count == -1) return 0;
|
||||||
buf[count] = '\0';
|
buf[count] = '\0';
|
||||||
if(stat(buf, &sbuf) < 0) return 0;
|
if(stat(buf, &sbuf) < 0) return 0;
|
||||||
@ -227,7 +227,7 @@ static int link_name(char *restrict const buf, unsigned maj, unsigned min, int p
|
|||||||
|
|
||||||
/* number --> name */
|
/* number --> name */
|
||||||
unsigned dev_to_tty(char *restrict ret, unsigned chop, dev_t dev_t_dev, int pid, unsigned int flags) {
|
unsigned dev_to_tty(char *restrict ret, unsigned chop, dev_t dev_t_dev, int pid, unsigned int flags) {
|
||||||
static char buf[PAGE_SIZE];
|
static char buf[NAME_SIZE];
|
||||||
char *restrict tmp = buf;
|
char *restrict tmp = buf;
|
||||||
unsigned dev = dev_t_dev;
|
unsigned dev = dev_t_dev;
|
||||||
unsigned i = 0;
|
unsigned i = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user