scsh-users
[Top] [All Lists]

Minor change for scsh in SGI IRIX 6.2

To: scsh-bugs@martigny.ai.mit.edu
Subject: Minor change for scsh in SGI IRIX 6.2
From: Jarmo Hurri <jarmo@nucleus.hut.fi>
Date: Wed, 12 Nov 1997 13:11:55 +0200
Organization: Helsinki University of Technology
Sender: jarmo@nucleus.hut.fi
Hi!

I compiled scsh for Silicon Graphics Indy workstations running IRIX 6.2.
I had to change one
header file in order to compile successfully. The change was done in
file machine/sigset.h,
and was

james /share/local/src/scsh/scsh-0.5.1/scsh/machine % diff sigset.h
sigset.h~
5c5
< #define make_sigset(maskp, hi, lo)
((maskp)->__sigbits[0]=((hi)<<24)|(lo))
---
> #define make_sigset(maskp, hi, lo)
((maskp)->sigbits[0]=((hi)<<24)|(lo))
9,10c9,10
<       ((*(hip)=((mask).__sigbits[0]>>24)&0xff), \
<        (*(lop)=((mask).__sigbits[0]&0xffffff)))
---
>       ((*(hip)=((mask).sigbits[0]>>24)&0xff), \
>        (*(lop)=((mask).sigbits[0]&0xffffff)))

So I just  changed sigbits to __sigbits. I hope you can incorporate this
change into your package
so that scsh can be made available to as many programmers as possible.

--
***********************************************************************
  Jarmo Hurri
  Helsinki University of Technology
  Laboratory of Computer and Information Sciences

  jarmo.hurri@hut.fi
  tel. +358-9-4513286
  fax  +358-9-4513277
***********************************************************************




<Prev in Thread] Current Thread [Next in Thread>
  • Minor change for scsh in SGI IRIX 6.2, Jarmo Hurri <=