Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: PATCH: struct heap 64-bit



In article <20000104105536.A8967@xxxxxxxx>,
  Clint Adams <schizo@xxxxxxxxxx> writes:

> This just gets rid of the overcompensation altogether.
> Incidentally, this solves the bus error problem I was
> experiencing on 64-bit SPARC Linux.

I think gcc extension should be used if it is available.

struct heap {
  ...
}
#if defined(PAD_64_BIT) && defined(__GNUC__)
  __attribute__ ((aligned (8)))
#endif
;
-- 
Tanaka Akira



Messages sorted by: Reverse Date, Date, Thread, Author