*** empty log message ***

svn path=/trunk/boinc/; revision=4336
This commit is contained in:
David Anderson 2004-10-16 20:20:37 +00:00
parent 742298ebce
commit 27adbc35b9
2 changed files with 19 additions and 0 deletions

View File

@ -156,6 +156,14 @@ int boinc_init_graphics(void (*_worker_main)()) {
return 0;
}
#ifdef _PTHREAD_H
extern "C" {
void glut_quit() {
pthread_exit(0);
}
}
#endif
int boinc_finish_graphics() {
#ifdef _WIN32
if (graphics_inited) {

View File

@ -18482,3 +18482,14 @@ David 16 Oct 2004
create_account_form.php
team_join_action.php
team_join_form.php
David 17 Oct 2004
- Deal with fatal GLUT errors (e.g. can't connect to X server)
by calling glut_quit() (which exits the pthread)
rather than exit() or abort() (which exits the app)
api/
graphics_api.C
boincglut/lib/glut/
glut_util.C
README (new)