我创建了若干个进程 如10个
for i:=0 to 9 do
  begin
  conntread:=Tconnthread.create(true);
  ....
  connthread.resume;
  end;运行到一定时候,我想挂起第三个创建(i=2时)的进程,应该怎样处理?