Esempio n. 1
0
 public void Pop(PetitClrThread thread)
 {
     thread.Frame = Next;
 }
Esempio n. 2
0
 public void Pop(PetitClrThread thread)
 {
     thread.Frame = Next;
 }
Esempio n. 3
0
        public void Push(PetitClrThread thread)
        {
            Next = thread.Frame;

            thread.Frame = this;
        }
Esempio n. 4
0
        public void Push(PetitClrThread thread)
        {
            Next = thread.Frame;

            thread.Frame = this;
        }