Hi, even the simplest pthread-program dies with a bus error(see attachment) on my I2. glibc is 2.2.1(same for 2.1.97), kernel is 2.4.0-test9. Interesting enough I can't even get a core dump. Any starting points to track this down? Regards, -- Guido
#include <pthread.h> #ifndef NULL #define NULL (void*)0 #endif static void *task(p) void *p; { return (void *) (p == NULL); } int main(argc, argv) int argc; char **argv; { pthread_t t; exit(pthread_create(&t, NULL, task, NULL)); }