2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-01-20 23:22:22 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2004-12-15 19:35:42 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
2005-01-20 23:22:22 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-01-20 23:22:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2004-12-15 19:35:42 +00:00
|
|
|
|
|
|
|
// Code that is included in the shared-library part of a graphics app,
|
|
|
|
// but NOT in libboinc_graphics_api.a (used by monolithic apps)
|
|
|
|
|
2005-12-16 03:33:36 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include "boinc_win.h"
|
|
|
|
#endif
|
|
|
|
|
2008-02-27 23:26:38 +00:00
|
|
|
#include <cstring>
|
2005-11-21 18:34:44 +00:00
|
|
|
#include "config.h"
|
2004-12-15 19:35:42 +00:00
|
|
|
#include "app_ipc.h"
|
|
|
|
#include "graphics_impl.h"
|
|
|
|
|
|
|
|
int boinc_get_init_data(APP_INIT_DATA& app_init_data) {
|
2004-12-17 19:55:08 +00:00
|
|
|
return g_bmsp->boinc_get_init_data_hook(app_init_data);
|
|
|
|
}
|
|
|
|
|
2006-01-06 09:02:26 +00:00
|
|
|
int boinc_is_standalone() {
|
2004-12-17 19:59:35 +00:00
|
|
|
return g_bmsp->boinc_is_standalone_hook();
|
2004-12-15 19:35:42 +00:00
|
|
|
}
|
|
|
|
|
2005-09-10 04:37:27 +00:00
|
|
|
// The following is a duplicate of function in boinc_api.C
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#ifndef _WIN32
|
|
|
|
// block SIGALRM, so that the worker thread will be forced to handle it
|
|
|
|
//
|
|
|
|
void block_sigalrm() {
|
|
|
|
sigset_t mask;
|
|
|
|
sigemptyset(&mask);
|
|
|
|
sigaddset(&mask, SIGALRM);
|
|
|
|
pthread_sigmask(SIG_BLOCK, &mask, NULL);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-01-02 18:29:53 +00:00
|
|
|
const char *BOINC_RCSID_9886dee259 = "$Id$";
|