mirror of https://github.com/BOINC/boinc.git
- install: don't install std_fixes.h or msg_queue.cpp
- remove some unused code - scheduler: small code cleanup svn path=/trunk/boinc/; revision=18465
This commit is contained in:
parent
7f7cb4a41a
commit
9527cb6534
|
@ -5884,3 +5884,15 @@ Rom 19 June 2009
|
||||||
TermsOfUsePage.cpp, .h
|
TermsOfUsePage.cpp, .h
|
||||||
WelcomePage.cpp
|
WelcomePage.cpp
|
||||||
WizardAttachProject.cpp
|
WizardAttachProject.cpp
|
||||||
|
|
||||||
|
David 19 June 2009
|
||||||
|
- install: don't install std_fixes.h or msg_queue.cpp
|
||||||
|
- remove some unused code
|
||||||
|
- scheduler: small code cleanup
|
||||||
|
|
||||||
|
lib/
|
||||||
|
Makefile.am
|
||||||
|
network.u
|
||||||
|
util.h
|
||||||
|
sched/
|
||||||
|
sched_send.cpp
|
||||||
|
|
|
@ -51,7 +51,6 @@ generic_sources = \
|
||||||
mfile.cpp \
|
mfile.cpp \
|
||||||
miofile.cpp \
|
miofile.cpp \
|
||||||
msg_log.cpp \
|
msg_log.cpp \
|
||||||
msg_queue.cpp \
|
|
||||||
network.cpp \
|
network.cpp \
|
||||||
parse.cpp \
|
parse.cpp \
|
||||||
prefs.cpp \
|
prefs.cpp \
|
||||||
|
@ -110,7 +109,6 @@ pkginclude_HEADERS = \
|
||||||
mfile.h \
|
mfile.h \
|
||||||
miofile.h \
|
miofile.h \
|
||||||
msg_log.h \
|
msg_log.h \
|
||||||
msg_queue.h \
|
|
||||||
network.h \
|
network.h \
|
||||||
parse.h \
|
parse.h \
|
||||||
prefs.h \
|
prefs.h \
|
||||||
|
@ -118,7 +116,6 @@ pkginclude_HEADERS = \
|
||||||
shmem.h \
|
shmem.h \
|
||||||
stackwalker_imports.h \
|
stackwalker_imports.h \
|
||||||
stackwalker_win.h \
|
stackwalker_win.h \
|
||||||
std_fixes.h \
|
|
||||||
str_util.h \
|
str_util.h \
|
||||||
synch.h \
|
synch.h \
|
||||||
util.h \
|
util.h \
|
||||||
|
|
|
@ -52,19 +52,6 @@ extern void reset_dns();
|
||||||
typedef int BOINC_SOCKLEN_T;
|
typedef int BOINC_SOCKLEN_T;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef NETWORK_ALIVE_LAN
|
|
||||||
#define NETWORK_ALIVE_LAN 0x00000001
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef NETWORK_ALIVE_WAN
|
|
||||||
#define NETWORK_ALIVE_WAN 0x00000002
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef NETWORK_ALIVE_AOL
|
|
||||||
#define NETWORK_ALIVE_AOL 0x00000004
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#if defined(_WIN32) && defined(USE_WINSOCK)
|
#if defined(_WIN32) && defined(USE_WINSOCK)
|
||||||
extern int WinsockInitialize();
|
extern int WinsockInitialize();
|
||||||
extern int WinsockCleanup();
|
extern int WinsockCleanup();
|
||||||
|
|
|
@ -27,10 +27,6 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#ifdef HAVE_PTHREAD
|
|
||||||
#include <pthread.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
extern double dtime();
|
extern double dtime();
|
||||||
extern double dday();
|
extern double dday();
|
||||||
extern void boinc_sleep(double);
|
extern void boinc_sleep(double);
|
||||||
|
|
|
@ -107,17 +107,22 @@ inline int effective_ngpus() {
|
||||||
// get limits on #jobs per day and per RPC
|
// get limits on #jobs per day and per RPC
|
||||||
//
|
//
|
||||||
inline void get_job_limits() {
|
inline void get_job_limits() {
|
||||||
int n;
|
int mult = effective_ncpus() + config.gpu_multiplier * effective_ngpus();
|
||||||
int mult = effective_ncpus();
|
|
||||||
mult += config.gpu_multiplier * effective_ngpus();
|
|
||||||
n = mult * config.max_wus_to_send * mult;
|
|
||||||
g_wreq->max_jobs_per_rpc = n?n:999999;
|
|
||||||
|
|
||||||
if (g_reply->host.max_results_day == 0 || g_reply->host.max_results_day>config.daily_result_quota) {
|
if (config.max_wus_to_send) {
|
||||||
g_reply->host.max_results_day = config.daily_result_quota;
|
g_wreq->max_jobs_per_rpc = mult * config.max_wus_to_send;
|
||||||
|
} else {
|
||||||
|
g_wreq->max_jobs_per_rpc = 999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (config.daily_result_quota) {
|
||||||
|
if (g_reply->host.max_results_day == 0 || g_reply->host.max_results_day>config.daily_result_quota) {
|
||||||
|
g_reply->host.max_results_day = config.daily_result_quota;
|
||||||
|
}
|
||||||
|
g_wreq->max_jobs_per_day = mult * g_reply->host.max_results_day;
|
||||||
|
} else {
|
||||||
|
g_wreq->max_jobs_per_day = 999999;
|
||||||
}
|
}
|
||||||
n = mult * g_reply->host.max_results_day;
|
|
||||||
g_wreq->max_jobs_per_day = n?n:999999;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void get_max_jobs_on_host() {
|
inline void get_max_jobs_on_host() {
|
||||||
|
|
Loading…
Reference in New Issue