ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/microscheme/scheme-private.h
(Generate patch)

Comparing microscheme/scheme-private.h (file contents):
Revision 1.11 by root, Mon Nov 30 23:40:45 2015 UTC vs.
Revision 1.12 by root, Tue Dec 1 01:54:27 2015 UTC

66 uint8_t *svalue; 66 uint8_t *svalue;
67 uint32_t length; 67 uint32_t length;
68 } string; 68 } string;
69 69
70 struct { 70 struct {
71 struct cell **vvalue; 71 pointer *vvalue;
72 uint32_t length; 72 uint32_t length;
73 } vector; 73 } vector;
74 74
75 intptr_t ivalue; 75 intptr_t ivalue;
76#if USE_REAL 76#if USE_REAL
115#endif 115#endif
116#ifndef CELL_NSEGMENT 116#ifndef CELL_NSEGMENT
117# define CELL_NSEGMENT 20 /* # of segments for cells */ 117# define CELL_NSEGMENT 20 /* # of segments for cells */
118#endif 118#endif
119 char *alloc_seg[CELL_NSEGMENT]; 119 char *alloc_seg[CELL_NSEGMENT];
120 pointer cell_seg[CELL_NSEGMENT]; 120 struct cell *cell_seg[CELL_NSEGMENT];
121 int cell_segsize[CELL_NSEGMENT]; 121 int cell_segsize[CELL_NSEGMENT];
122 int last_cell_seg; 122 int last_cell_seg;
123 123
124 int interactive_repl; /* are we in an interactive REPL? */ 124 int interactive_repl; /* are we in an interactive REPL? */
125 125

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines