diff -ru src/def.h c/def.h --- src/def.h 2007-12-06 17:30:56.000000000 +0100 +++ c/def.h 2013-10-19 18:42:55.118745730 +0200 @@ -2,14 +2,9 @@ /* INT should always be 4 byte */ #ifndef DEF_H - -#ifdef __alpha -typedef int INT; -typedef unsigned int UINT; -#else /* __alpha */ -typedef long INT; -typedef unsigned long UINT; -#endif /* __alpha */ +#include +typedef int32_t INT; +typedef uint32_t UINT; #include #include @@ -65,10 +60,13 @@ /* definitionen fuer object.c */ -typedef INT OBJECTKIND; /* 4 byte */ +/* NOTE: partition code assumes that there is no unused space in the + * object struct when an INT is stored. This requires both OBJECTKIND + * and OBJECTSELF to have a size equal to a machine word. */ +typedef intptr_t OBJECTKIND; typedef union { - INT ob_INT; + intptr_t ob_INT; INT * ob_INTpointer; char *ob_charpointer; struct bruch *ob_bruch; stomized Guix
aboutsummaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Expand)Author
2021-05-20The #guix channel is hosted by Libera Chat....* README (Contact): Update network name. * ROADMAP: Likewise. * doc/contributing.texi (Contributing): Likewise. * doc/guix.texi (After System Installation): Likewise. Tobias Geerinckx-Rice
2020-10-23doc: Update README....* README (Installation): Do not mention installing Guix from Git anymore. (Building from Git): Add section. Maxim Cournoyer
2020-10-22README: Refer to the manual for building from Git....* README (Installing Guix from Guix): Remove section. (Installation): For installing from Git, refer to the "Building from Git" section of the manual and suggest using './pre-inst-env guix pull' rather than 'make install' for installing Guix. Maxim Cournoyer
2020-06-02doc: Update README to refer to the manual....* README (Requirements): Refer to the manual. (Installation): Update URL of the manual. Ludovic Courtès
2019-11-09doc: Mention value /var to localstatedir option....* README (Installing Guix from Guix): Mention value /var to localstatedir option. * doc/contributing.texi (Building from Git): Likewise. * doc/guix.texi (Requirements): Likewise. Signed-off-by: Ludovic Courtès <ludo@gnu.org> zimoun
2019-09-04doc: Update 'README'....* README: Update intro a bit. (Installing Guix as non-root): Remove as it's largely outdated. (Contact): Update. Ludovic Courtès