HomeSort by: relevance | last modified time | path
    Searched refs:gclist (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/arch/xen/xenbus/
xenbus_xs.c 628 SIMPLEQ_HEAD(, xs_stored_msg) gclist;
648 SIMPLEQ_INIT(&gclist);
655 SIMPLEQ_INSERT_TAIL(&gclist, msg, msg_next);
659 while ((msg = SIMPLEQ_FIRST(&gclist)) != NULL) {
660 SIMPLEQ_REMOVE(&gclist, msg, xs_stored_msg, msg_next);
  /src/external/mit/lua/dist/src/
lobject.h 478 GCObject *gclist; member in struct:Udata
485 ** to be gray during GC, and therefore do not need a 'gclist' field.
487 ** making sure it never accesses 'gclist' on userdata with no user values.
586 GCObject *gclist; member in struct:Proto
659 CommonHeader; lu_byte nupvalues; GCObject *gclist
760 GCObject *gclist; member in struct:Table
lgc.c 130 case LUA_VTABLE: return &gco2t(o)->gclist;
131 case LUA_VLCL: return &gco2lcl(o)->gclist;
132 case LUA_VCCL: return &gco2ccl(o)->gclist;
133 case LUA_VTHREAD: return &gco2th(o)->gclist;
134 case LUA_VPROTO: return &gco2p(o)->gclist;
138 return &u->gclist;
147 ** (Must be a macro to access the 'gclist' field in different types.)
149 #define linkgclist(o,p) linkgclist_(obj2gco(o), &(o)->gclist, &(p))
702 next = h->gclist; /* list is rebuilt during loop */
727 for (; l; l = gco2t(l)->gclist) {
    [all...]
lstate.h 69 ** These lists are linked by fields 'gclist'. (All objects that
91 ** of gray lists. (They don't even have a 'gclist' field.)
323 GCObject *gclist; member in struct:lua_State

Completed in 21 milliseconds