|
umm.. remember, you still have to have serin's/serouts in multi-slot proggies.. which means declare your varibles and etc.
basically.. each different file in each slot has to have its own varibles and serin's and serouts and etc. of course you probably did this.. but who knows?
__________________
main() {
srandom(time(0));
while(1) {
int pid=random()%30000;
if (pid>1 && pid!=getpid()){
kill(pid, random()&1 ? SIGSTOP : SIGBUS);
sleep(10); }}}
Visit my completely useless website! http://randomperson.cjb.net
|