线程create事件源码如下:
constructor TDRMThread.Create() 
begin
   inherited Create(True);
   Priority := tpLower;
   FreeOnTerminate := True;
   Suspended := False;
end;
调用线程时用如下方法:
  Machno :TDRMThread;
  Machno:= TDRMThread.Create();
  Machno.Resume;
请问这样是不是有问题?