Only in xosview-1.6.0_m: Makefile
Only in xosview-1.6.0_m: Makefile.GNU.autodep
Only in xosview-1.6.0_m: Makefile.config
Only in xosview-1.6.0_m: config.cache
Only in xosview-1.6.0_m: config.log
Only in xosview-1.6.0_m: config.status
Only in xosview-1.6.0_m/linux: Makefile
diff -c --recursive xosview-1.6.0/linux/intmeter.cc xosview-1.6.0_m/linux/intmeter.cc
*** xosview-1.6.0/linux/intmeter.cc	Sat Mar  7 22:47:31 1998
--- xosview-1.6.0_m/linux/intmeter.cc	Thu Oct  1 02:37:22 1998
***************
*** 13,18 ****
--- 13,21 ----
  #include <strstream.h>
  #include <stdlib.h>
  
+ #ifdef __alpha__
+ #include <asm/irq.h>
+ #endif
  
  static const char *INTFILE     = "/proc/interrupts";
  static const char *VERSIONFILE = "/proc/version";
***************
*** 20,33 ****
--- 23,45 ----
  IntMeter::IntMeter( XOSView *parent, int cpu)
    : BitMeter( parent, "INTS", "", 1, 
                0, 0 ), _cpu(cpu), _old(true) {
+ #ifdef __alpha__
+  char tmp[32];
+ #endif
   if (getLinuxVersion() <= 2.0) {
     setNumBits(16);
     legend("INTs (0-15)");
   }
   else {
     _old = false;
+ #ifdef __alpha__
+    setNumBits(NR_IRQS);
+    sprintf(tmp,"INTs (0-%d)",(NR_IRQS-1));
+    legend(tmp);
+ #else
     setNumBits(24);
     legend("INTs (0-23)");
+ #endif
   }
  
    for ( int i = 0 ; i < numBits() ; i++ )
diff -c --recursive xosview-1.6.0/linux/intmeter.h xosview-1.6.0_m/linux/intmeter.h
*** xosview-1.6.0/linux/intmeter.h	Sat Mar  7 22:20:39 1998
--- xosview-1.6.0_m/linux/intmeter.h	Thu Oct  1 02:38:09 1998
***************
*** 24,30 ****
    static int countCPUs(void);
  
  protected:
!   unsigned long irqs_[24], lastirqs_[24];
    int _cpu;
    bool _old;
  
--- 24,30 ----
    static int countCPUs(void);
  
  protected:
!   unsigned long irqs_[65], lastirqs_[65]; /* Alphas can have up to 64 IRQs! */
    int _cpu;
    bool _old;
  
diff -c --recursive xosview-1.6.0/linux/memstat/Makefile xosview-1.6.0_m/linux/memstat/Makefile
*** xosview-1.6.0/linux/memstat/Makefile	Sat May 16 22:35:30 1998
--- xosview-1.6.0_m/linux/memstat/Makefile	Thu Oct  1 02:11:17 1998
***************
*** 30,36 ****
  tags TAGS :
  	etags $(CFILES) *.h
  
! %.o : %-2.0.$(FEXT)
  	$(CC) $(CFLAGS) -c $< -o $@
  
  %.o : %.$(FEXT)
--- 30,36 ----
  tags TAGS :
  	etags $(CFILES) *.h
  
! %.o : %-2.1.$(FEXT)
  	$(CC) $(CFLAGS) -c $< -o $@
  
  %.o : %.$(FEXT)
diff -c --recursive xosview-1.6.0/linux/netmeter.cc xosview-1.6.0_m/linux/netmeter.cc
*** xosview-1.6.0/linux/netmeter.cc	Sat May 16 22:34:55 1998
--- xosview-1.6.0_m/linux/netmeter.cc	Thu Oct  1 02:39:13 1998
***************
*** 204,210 ****
          if (!ifs.eof())
              {
              struct ifreq *ifr = ifc.ifc_req;
!             for (register i = ifc.ifc_len / sizeof(struct ifreq); 
                   --i >= 0; ifr++) 
                  {
                  unsigned long adr = ntohl(
--- 204,210 ----
          if (!ifs.eof())
              {
              struct ifreq *ifr = ifc.ifc_req;
!             for (register int i = ifc.ifc_len / sizeof(struct ifreq); 
                   --i >= 0; ifr++) 
                  {
                  unsigned long adr = ntohl(
diff -c --recursive xosview-1.6.0/linux/serialmeter.cc xosview-1.6.0_m/linux/serialmeter.cc
*** xosview-1.6.0/linux/serialmeter.cc	Tue Nov 18 03:54:20 1997
--- xosview-1.6.0_m/linux/serialmeter.cc	Thu Oct  1 02:21:06 1998
***************
*** 18,29 ****
  #include <stdlib.h>
  #include <strstream.h>
  
  #include <unistd.h>
  #if defined(GNULIBC) || defined(__GLIBC__)
  #include <sys/io.h>
! #include <sys/perm.h>
  #else
! #include <asm/io.h>
  #endif
  #include <linux/serial.h>
  #include <linux/serial_reg.h>
--- 18,38 ----
  #include <stdlib.h>
  #include <strstream.h>
  
+ typedef unsigned char u8;
+ typedef signed short s16;
+ typedef unsigned short u16;
+ typedef signed int s32;
+ typedef unsigned int u32;
+ typedef signed long long s64;
+ typedef unsigned long long u64;
+ 
+ 
  #include <unistd.h>
  #if defined(GNULIBC) || defined(__GLIBC__)
  #include <sys/io.h>
! /* #include <sys/perm.h> */
  #else
! /* #include <asm/io.h> */
  #endif
  #include <linux/serial.h>
  #include <linux/serial_reg.h>
