::AfxBeginThread(GetDataProc,(LPVOID)this);
UINT GetDataProc( LPVOID pParam )
{
     sss *ctl = (sss*)pParam;
     while(1)
     {
         ctl->fun();
     }
    return 0;
     
}
void sss::fun()
{
     char *ff = new char [1000];
     delete []ff;
     ff = NULL;
}