2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2004-12-15 19:35:42 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This 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 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This software is distributed in the hope that it will be useful,
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
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
|
|
|
|
|
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$";
|