2003-07-01 20:37:09 +00:00
|
|
|
// The contents of this file are subject to the BOINC Public License
|
2003-03-08 00:09:40 +00:00
|
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
// compliance with the License. You may obtain a copy of the License at
|
2003-07-01 20:37:09 +00:00
|
|
|
// http://boinc.berkeley.edu/license_1.0.txt
|
2003-07-09 23:54:45 +00:00
|
|
|
//
|
2003-03-08 00:09:40 +00:00
|
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing rights and limitations
|
2003-07-09 23:54:45 +00:00
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
2003-03-08 00:09:40 +00:00
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
2003-07-01 20:37:09 +00:00
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
2003-07-09 23:54:45 +00:00
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
2003-03-08 00:09:40 +00:00
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
2003-07-02 02:02:18 +00:00
|
|
|
#ifndef SCHED_UTIL_H
|
|
|
|
#define SCHED_UTIL_H
|
2003-03-08 00:09:40 +00:00
|
|
|
|
|
|
|
// "average credit" uses an exponential decay so that recent
|
|
|
|
// activity is weighted more heavily.
|
2004-04-07 06:51:42 +00:00
|
|
|
// CREDIT_HALF_LIFE is the "half-life" period:
|
2003-08-12 20:58:24 +00:00
|
|
|
// the average decreases by 1/2 if idle for this period.
|
|
|
|
//
|
2003-03-08 00:09:40 +00:00
|
|
|
#define SECONDS_IN_DAY (3600*24)
|
2004-04-07 06:51:42 +00:00
|
|
|
#define CREDIT_HALF_LIFE (SECONDS_IN_DAY*7)
|
2003-03-08 00:09:40 +00:00
|
|
|
|
2003-06-20 01:31:03 +00:00
|
|
|
extern void write_pid_file(const char* filename);
|
2003-06-11 23:36:40 +00:00
|
|
|
extern void set_debug_level(int);
|
2004-05-03 19:30:01 +00:00
|
|
|
extern void check_stop_daemons();
|
|
|
|
extern bool check_stop_sched();
|
2003-12-31 23:09:21 +00:00
|
|
|
extern void install_stop_signal_handler();
|
2004-09-13 18:05:54 +00:00
|
|
|
extern int try_fopen(char* path, FILE*& f, char* mode);
|
2003-03-08 00:09:40 +00:00
|
|
|
|
|
|
|
#endif
|