Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: PATCH: struct heap 64-bit
- X-seq: zsh-workers 9206
- From: Tanaka Akira <akr@xxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx
- Subject: Re: PATCH: struct heap 64-bit
- Date: 05 Jan 2000 01:41:10 +0900
- In-reply-to: Clint Adams's message of "Tue, 4 Jan 2000 10:55:36 -0500"
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
- References: <200001031011.LAA11708@xxxxxxxxxxxxxxxxxxxxxxxxx> <200001031201.NAA18846@xxxxxxxxxxxxxxxxxxxxxxxxx> <20000104105536.A8967@xxxxxxxx>
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