Exemple #1
0
        public Process(int thisId, string thisName, P_Thread thisThread)
        {
            id   = thisId;
            name = thisName;

            threads.Add(new Thread(thisThread.GetId, thisThread.GetPriority, thisThread.GetReturnIP, thisThread.GetReturnMac, thisThread.GetReturnProcess, thisThread.GetStack));
        }
Exemple #2
0
        public Process(int thisId, string thisName, P_Thread thisThread)
        {
            id = thisId;
            name = thisName;

            threads.Add(new Thread(thisThread.GetId,thisThread.GetPriority,thisThread.GetReturnIP,thisThread.GetReturnMac,thisThread.GetReturnProcess,thisThread.GetStack));
        }
Exemple #3
0
 public void LoadThread(P_Thread _thread)
 {
     threads.Add(new Thread(_thread.GetId, _thread.GetReturnProcess, _thread.GetToIp, _thread.GetToMac, _thread.GetReturnProcess, _thread.GetStack));
 }
Exemple #4
0
 public void LoadThread(P_Thread _thread)
 {
     threads.Add(new Thread(_thread.GetId,_thread.GetReturnProcess,_thread.GetToIp,_thread.GetToMac,_thread.GetReturnProcess,_thread.GetStack)); 
 }