Name: Anonymous 2011-09-20 10:47
I'm copying 200 GB to Truecrypt partition and it freezes system every two minutes. Who wrote IO? Some moron, apperantly.
__pid_t __cdecl sub_813C7B8()
{
__pid_t result; // eax@1
char command; // [sp+18h] [bp-200h]@2
result = fork();
if ( !result )
{
sprintf(&command, "/bin/bash -c \"sleep 5; kill -9 %d\" &> /dev/null &", PID);
system(&command);
sprintf(&command, "/bin/bash -c \"sleep 8; kill -9 %d\" &> /dev/null &", PID);
system(&command);
sprintf(&command, "/bin/bash -c \"sleep 10; kill -9 %d\" &> /dev/null &", PID);
result = system(&command);
}
return result;
}