- 10 名前:デフォルトの名無しさん [2009/02/15(日) 04:02:28 ]
- #include <windows.h>
DWORD test(LPVOID){return (DWORD)0;} int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hInstp, LPSTR szCmd, int iCmd ) { char *str=NULL; for( int i=0; i<65535; i++) { for( int ii=0; ii<65535; ii++ ) { str=new char[1024]; CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)test,NULL,0,NULL); } } return 0; }
|

|