mirror of https://github.com/BOINC/boinc.git
added fcgi_stdio.h
added fcgi_stdio.h added fcgi_stdio.h svn path=/trunk/boinc/; revision=3773
This commit is contained in:
parent
a15d1aa478
commit
7038bf39de
|
@ -42,6 +42,10 @@ using namespace std;
|
|||
#include "sched_msgs.h"
|
||||
#include "sched_send.h"
|
||||
|
||||
#ifdef _USING_FCGI_
|
||||
#include "fcgi_stdio.h"
|
||||
#endif
|
||||
|
||||
// Look up the host and its user, and make sure the authenticator matches.
|
||||
// If no host ID is supplied, or if RPC seqno mismatch,
|
||||
// create a new host record and return its ID
|
||||
|
|
|
@ -28,6 +28,10 @@
|
|||
|
||||
#include "sched_config.h"
|
||||
|
||||
#ifdef _USING_FCGI_
|
||||
#include "fcgi_stdio.h"
|
||||
#endif
|
||||
|
||||
const char* CONFIG_FILE = "config.xml";
|
||||
|
||||
int SCHED_CONFIG::parse(char* buf) {
|
||||
|
|
|
@ -19,6 +19,10 @@
|
|||
|
||||
#include "sched_msgs.h"
|
||||
|
||||
#ifdef _USING_FCGI_
|
||||
#include "fcgi_stdio.h"
|
||||
#endif
|
||||
|
||||
SCHED_MSG_LOG log_messages;
|
||||
|
||||
const char* SCHED_MSG_LOG::v_format_kind(int kind) const {
|
||||
|
|
|
@ -34,6 +34,10 @@ using namespace std;
|
|||
#include "sched_msgs.h"
|
||||
#include "sched_send.h"
|
||||
|
||||
#ifdef _USING_FCGI_
|
||||
#include "fcgi_stdio.h"
|
||||
#endif
|
||||
|
||||
const int MIN_SECONDS_TO_SEND = 0;
|
||||
const int MAX_SECONDS_TO_SEND = (28*SECONDS_IN_DAY);
|
||||
|
||||
|
|
|
@ -31,6 +31,10 @@
|
|||
#include "sched_shmem.h"
|
||||
#include "sched_util.h"
|
||||
|
||||
#ifdef _USING_FCGI_
|
||||
#include "fcgi_stdio.h"
|
||||
#endif
|
||||
|
||||
void SCHED_SHMEM::init() {
|
||||
memset(this, 0, sizeof(SCHED_SHMEM));
|
||||
ss_size = sizeof(SCHED_SHMEM);
|
||||
|
|
Loading…
Reference in New Issue