示例#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));
        }
示例#2
0
文件: Process.cs 项目: iSalva/Cosmos
        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));
        }
示例#3
0
 public void LoadThread(P_Thread _thread)
 {
     threads.Add(new Thread(_thread.GetId, _thread.GetReturnProcess, _thread.GetToIp, _thread.GetToMac, _thread.GetReturnProcess, _thread.GetStack));
 }
示例#4
0
文件: Process.cs 项目: iSalva/Cosmos
 public void LoadThread(P_Thread _thread)
 {
     threads.Add(new Thread(_thread.GetId,_thread.GetReturnProcess,_thread.GetToIp,_thread.GetToMac,_thread.GetReturnProcess,_thread.GetStack)); 
 }