Searched defs:BUSY (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libmapmalloc/common/
H A Dtextmem.c74 #define BUSY 1 macro
149 block->status = BUSY;
251 if (block->status == BUSY)
/osnet-11/usr/src/lib/libmalloc/common/
H A Dmallint.h140 #define BUSY 1L macro
141 #define SETBUSY(x) ((struct header *)((long)(x) | BUSY))
142 #define CLRBUSY(x) ((struct header *)((long)(x) & ~BUSY))
143 #define TESTBUSY(x) ((long)(x) & BUSY)
155 #define SETALL(x) ((long)(x) | (SMAL | BUSY))
156 #define CLRALL(x) ((long)(x) & ~(SMAL | BUSY))
/osnet-11/usr/src/lib/libast/common/vmalloc/
H A Dvmhdr.h185 #define BUSY (01) /* block is busy */ macro
188 #define BITS (07) /* (BUSY|PFREE|JUNK) */
195 #define ISBUSY(w) ((w) & BUSY)
196 #define SETBUSY(w) ((w) |= BUSY)
197 #define CLRBUSY(w) ((w) &= ~BUSY)

Completed in 27 milliseconds