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() {
|
void boinc_mask() {
|
||||||
|
#ifndef _WIN32
|
||||||
sighold(SIGALRM);
|
sighold(SIGALRM);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void boinc_unmask() {
|
void boinc_unmask() {
|
||||||
|
#ifndef _WIN32
|
||||||
sigrelse(SIGALRM);
|
sigrelse(SIGALRM);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
int boinc_fraction_done(double x) {
|
int boinc_fraction_done(double x) {
|
||||||
|
|
|
@ -23,6 +23,9 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
#include "gl/gl.h"
|
||||||
|
#include "gl/glu.h"
|
||||||
|
#include "gl/glut.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_GL_H
|
#ifdef HAVE_GL_H
|
||||||
|
|
Loading…
Reference in New Issue