pike.git/
src/
svalue.h
Branch:
Tag:
Non-build tags
All tags
No tags
1996-05-15
1996-05-15 23:00:49 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
4eb50ab1c7a58b514e6221bc91f4b5c6e990988f (
7
lines) (+
6
/-
1
)
[
Show
|
Annotate
]
Branch:
branches/E-12
added BIT_UNUSED
Rev: src/svalue.h:1.7
75:
#define BIT_INT (1<<T_INT) #define BIT_FLOAT (1<<T_FLOAT)
+
/* Used to signifiy that this array might not be finished yet */
+
/* garbage collect uses this */
+
#define BIT_UNFINISHED (1<<15)
+
#define BIT_NOTHING 0
-
#define BIT_MIXED
0xffff
+
#define BIT_MIXED
0x7fff
#define BIT_BASIC (BIT_INT|BIT_FLOAT|BIT_STRING) #define BIT_COMPLEX (BIT_ARRAY|BIT_LIST|BIT_OBJECT|BIT_PROGRAM|BIT_MAPPING)