added fcgi_stdio.h

added fcgi_stdio.h
added fcgi_stdio.h

svn path=/trunk/boinc/; revision=3773
This commit is contained in:
Matt Lebofsky 2004-07-03 21:38:22 +00:00
parent a15d1aa478
commit 7038bf39de
5 changed files with 20 additions and 0 deletions

View File

@ -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

View File

@ -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) {

View File

@ -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 {

View File

@ -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);

View File

@ -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);