Changed type for signal', blocked', sigignore' and sigcatch' to

1998-07-23  Martin Baulig  <martin@home-of-linux.org>

	* include/glibtop/procsignal.h (glibtop_proc_signal):
	Changed type for `signal', `blocked', `sigignore' and
	`sigcatch' to `unsigned long long'.
This commit is contained in:
Martin Baulig
1998-07-23 18:12:04 +00:00
committed by Martin Baulig
parent 954a78f200
commit 61c262dd7e
7 changed files with 55 additions and 22 deletions

View File

@@ -129,10 +129,10 @@ struct table_proc_time
struct table_proc_signal
{
sigset_t signal;
sigset_t blocked; /* bitmap of masked signals */
sigset_t ignored; /* mask of ignored signals */
sigset_t caught; /* mask of caught signals */
unsigned long long signal,
blocked, /* bitmap of masked signals */
ignored, /* mask of ignored signals */
caught; /* mask of caught signals */
};
struct table_proc_kernel