Windows challenge |
Windows challenge |
Oct 12 2009, 10:21 PM
Post
#1
|
|
![]() /人◕‿‿◕人\ ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 8,283 Joined: Dec 2007 Member No: 602,927 |
ITT: we see how many programs we can run before our system starts becoming unusably slow.
mine:
|
|
|
|
![]() |
Oct 12 2009, 10:37 PM
Post
#2
|
|
![]() /人◕‿‿◕人\ ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 8,283 Joined: Dec 2007 Member No: 602,927 |
You can try just a regular fork bomb, they're fairly simple. Just time how long it takes your computer to memory overflow.
CODE @ECHO OFF :A START notepad.exe START fork.bat GOTO A Paste that into notepad, and save it as fork.bat Be sure it doesn't save as fork.bat.txt, because then it's not going to work. |
|
|
|
Oct 13 2009, 12:40 AM
Post
#3
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Administrator Posts: 2,648 Joined: Apr 2008 Member No: 639,265 |
You can try just a regular fork bomb, they're fairly simple. Just time how long it takes your computer to memory overflow. I know this is pedantic, but a fork bomb doesn't cause problems because memory is used up; it causes problems because the OS's process table becomes filled (not because of memory constraints, just because the process table only holds a finite number of processes). I think Windows uses a shared, copy-on-write memory model (I know Unix/Linux/Mac OS X does), so 1 notebook.exe process uses roughly the same amount of memory as 1,000,000. </systems-programmer> |
|
|
|
Buttsex Windows challenge Oct 12 2009, 10:21 PM
emberfly I wouldn't even know where I would find 1039 p... Oct 12 2009, 10:22 PM
Buttsex I used a batch file to run notepad.exe 1000 times.... Oct 12 2009, 10:24 PM
emberfly Could you tell me how to do that? I want to know h... Oct 12 2009, 10:28 PM
emberfly gracias. Oct 12 2009, 10:39 PM
Buttsex By the way, I don't know why you would want to... Oct 12 2009, 10:41 PM
emberfly well thank you for telling me.
http://en.wikipedi... Oct 12 2009, 10:48 PM
Buttsex Except the thousand I had running used 70% of my m... Oct 13 2009, 03:35 PM
mipadi Perhaps Windows' copy-on-write mechanism is mo... Oct 13 2009, 03:59 PM
Buttsex I suppose that could be it. Oct 13 2009, 04:30 PM![]() ![]() |