|
From: <wsh...@us...> - 2003-08-22 17:06:01
|
Update of /cvsroot/emc/rcslib/src/cms
In directory sc8-pr-cvs1:/tmp/cvs-serv12571/src/cms
Added Files:
Tag: wps_multiplat_dev_branch
cms_xup_no_config.h http_srv_no_config.h sendn_no_config.h
tcp_srv_no_config.h
Log Message:
.
--- NEW FILE: cms_xup_no_config.h ---
#ifndef CMS_XUP_NO_CONFIG_H
#define CMS_XUP_NO_CONFIG_H
#include "rcs_defs.hh"
extern "C"
{
#ifndef NO_DCE_RPC
#include <rpc/rpc.h> /* struct XDR */
#else
#if defined(VXWORKS) || defined(irix6)
#include <rpc/types.h>
#include <rpc/xdr.h> // struct XDR
#else
#include "xdr.h"
#endif
#endif
#include <stdlib.h>
}
#endif
--- NEW FILE: http_srv_no_config.h ---
#ifndef HTTP_SRV_NO_CONFIG_H
#define HTTP_SRV_NO_CONFIG_H
#include "rcs_defs.hh" /* EXTERN_C_STD_HEADERS */
#ifdef EXTERN_C_STD_HEADERS
extern "C"
{
#endif
#include <string.h> /* memset(), strerror() */
#include <stdlib.h> // malloc(), free()
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <dirent.h>
#include <errno.h> /* errno */
#include <signal.h> // SIGPIPE, signal()
#if (defined(__CENTERLINE__) && !defined(VXWORKS)) || defined(sunos5) || defined(sparcworks)
#include <sys/filio.h> /* FIONREAD */
char *strerror (int errnum);
char *dl_inet_ntoa (struct in_addr);
#endif
#ifdef EXTERN_C_STD_HEADERS
}
#endif
#ifdef VXWORKS
#include "vxWorks.h"
#include "taskLib.h" // taskSpawn
#endif
#ifdef UNIX_LIKE_PLAT
#include <sys/types.h>
#include <sys/wait.h> // waitpid
#endif
#ifndef NO_THREADS
#ifdef SGI
#include <sys/resource.h>
#include <sys/prctl.h> // sproc(), prctl()
#endif
#ifdef WIN32
#ifdef MULTITHREADED
#include <process.h> // _beginthread
#else
#define NO_THREADS
#endif
#endif
#endif
#endif
// #ifndef HTTP_SRV_NO_CONFIG_H
--- NEW FILE: sendn_no_config.h ---
#ifndef SENDN_NO_CONFIG_H
#define SENDN_NO_CONFIG_H
/* This is neccessary to avoid muliple definitions of fd_set, etc when both
* RPC via PCNFS and Windows Sockets are to be available. */
#ifdef USE_PCNFS
#undef USE_PCNFS
#endif
#include "rcs_defs.hh" /* _Windows */
#include <string.h> /* strerror */
#include <stdlib.h> /* memset() */
#include <errno.h> /* errno */
#include <math.h> /* fabs() */
#endif
--- NEW FILE: tcp_srv_no_config.h ---
#ifndef TCP_SRV_NO_CONFIG_H
#define TCP_SRV_NO_CONFIG_H
#include "rcs_defs.hh" /* EXTERN_C_STD_HEADERS */
#ifdef EXTERN_C_STD_HEADERS
extern "C"
{
#endif
#include <string.h> /* memset(), strerror() */
#include <stdlib.h> // malloc(), free()
#include <errno.h> /* errno */
#include <signal.h> // SIGPIPE, signal()
#if (defined(__CENTERLINE__) && !defined(VXWORKS)) || defined(sunos5) || defined(sparcworks)
#include <sys/filio.h> /* FIONREAD */
char *strerror (int errnum);
char *dl_inet_ntoa (struct in_addr);
#endif
#ifdef EXTERN_C_STD_HEADERS
}
#endif
#ifdef VXWORKS
#include "vxWorks.h"
#include "taskLib.h" // taskSpawn
#endif
#ifdef UNIX_LIKE_PLAT
#include <sys/types.h>
#include <sys/wait.h> // waitpid
#endif
#ifndef NO_THREADS
#ifdef SGI
#include <sys/resource.h>
#include <sys/prctl.h> // sproc(), prctl()
#endif
#ifdef WIN32
#ifdef MULTITHREADED
#include <process.h> // _beginthread
#else
#define NO_THREADS
#endif
#endif
#endif
#endif
// ifndef TCP_SRV_NO_CONFIG_H
|