mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=4336
This commit is contained in:
parent
742298ebce
commit
27adbc35b9
|
@ -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) {
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue