Ejemplo n.º 1
0
        public static void markfinalized(Udata_uv u)
        {
            lu_byte marked = u.marked;                  // can't pass properties in as ref

            l_setbit(ref marked, FINALIZEDBIT);
            u.marked = marked;
        }
Ejemplo n.º 2
0
 public Udata()
 {
     this.uv = this;
 }
Ejemplo n.º 3
0
 public static void markfinalized(Udata_uv u)
 {
     lu_byte marked = u.marked;	// can't pass properties in as ref
     l_setbit(ref marked, FINALIZEDBIT);
     u.marked = marked;
 }
Ejemplo n.º 4
0
 public static bool isfinalized(Udata_uv u)
 {
     return testbit(u.marked, FINALIZEDBIT);
 }
Ejemplo n.º 5
0
 public static bool isfinalized(Udata_uv u)
 {
     return(testbit(u.marked, FINALIZEDBIT));
 }