Comment pthread_join()

- Blocks Android rendering
    - Unnecessary for GLUT/Linux renderer
    - Might need to be worked around for Mac tests
This commit is contained in:
Aaron Culliney 2015-02-24 15:49:57 -08:00
parent 560726728f
commit 1c7e707af9
3 changed files with 3 additions and 3 deletions

View File

@ -1081,7 +1081,7 @@ void test_disk(int argc, char **argv) {
if (begin_video) {
video_main_loop();
}
pthread_join(p, NULL);
//pthread_join(p, NULL);
}
#if !defined(__APPLE__)

View File

@ -469,7 +469,7 @@ void test_display(int argc, char **argv) {
if (begin_video) {
video_main_loop();
}
pthread_join(p, NULL);
//pthread_join(p, NULL);
}
#if !defined(__APPLE__)

View File

@ -3485,7 +3485,7 @@ void test_vm(int argc, char **argv) {
if (begin_video) {
video_main_loop();
}
pthread_join(p, NULL);
//pthread_join(p, NULL);
}
#if !defined(__APPLE__)