Ticket #150 (new defect)
onExit animations
| Reported by: | mringwal | Owned by: | saurik |
|---|---|---|---|
| Priority: | blocker | Component: | Bootstrap |
| Keywords: | jailbreak, QuickPwn, Cydia, install, BossPrefs, SBSettings | Cc: |
Description
I've tried a minimal test app (which is fine on the mac), but it crashes on a bus error. The output from gdb did not help me either. Any ideas on this?
#include <pth.h> #include <stdio.h>
void *aThread(void *arg){
char *text = (char *) arg; while (1) {
printf("This is %s \n", text); pth_usleep(10000);
} return NULL;
}
int main(int argc, char* argv[]){
pth_init(); pth_spawn( PTH_ATTR_DEFAULT, aThread, "Thread A"); pth_spawn( PTH_ATTR_DEFAULT, aThread, "Thread B"); pth_spawn( PTH_ATTR_DEFAULT, aThread, "Thread C"); while(1) pth_yield(NULL);
}
Change History
Note: See
TracTickets for help on using
tickets.
