| Kwaad said: Ok sorry but... C2D > a Dual-Core AMD. Yup. There's a Ubuntu Dell system I'm getting for my buddy in a few weeks, that kicks some serious ass. |
Oh, I love my Core2Duo in Ubuntu. Someone on slashdot dared someone to run 32000 "busy" threads in linux to see if it would crash like it did his Windows box. My C2D tore through those 32000 threads like butter. Yeah, I'm geek like that.
The code in case your interested ;)
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
int pthread_create(pthread_t*__threadarg, const pthread_attr_t*__attr, void*(*__start_routine)(void *), void*__arg);
void *Th( void *ptr ) { while(1); }
main() { pthread_t thread; int iret; int n; for(n = 0; n < 31999; n++) { iret = pthread_create( &thread, NULL, Th, NULL); } while(1); return 0; }
It seems the mods need help with this forum. I have zero tolerance for trolling, platform criticism (Rule 4), and poster bad-mouthing (Rule 3.4) and you will be reported.
Review before posting: http://vgchartz.com/forum/rules.php







