mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=2285
This commit is contained in:
parent
f8d826ed5f
commit
9224c22400
|
@ -340,11 +340,15 @@ int boinc_checkpoint_completed() {
|
|||
}
|
||||
|
||||
void boinc_mask() {
|
||||
#ifndef _WIN32
|
||||
sighold(SIGALRM);
|
||||
#endif
|
||||
}
|
||||
|
||||
void boinc_unmask() {
|
||||
#ifndef _WIN32
|
||||
sigrelse(SIGALRM);
|
||||
#endif
|
||||
}
|
||||
|
||||
int boinc_fraction_done(double x) {
|
||||
|
|
|
@ -23,6 +23,9 @@
|
|||
#include <math.h>
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#include "gl/gl.h"
|
||||
#include "gl/glu.h"
|
||||
#include "gl/glut.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_GL_H
|
||||
|
|
Loading…
Reference in New Issue