*** empty log message ***

svn path=/trunk/boinc/; revision=2285
This commit is contained in:
Dan Werthimer 2003-09-06 22:23:25 +00:00
parent f8d826ed5f
commit 9224c22400
2 changed files with 7 additions and 0 deletions

View File

@ -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) {

View File

@ -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