ed81e51c3a
* rename ompi pty code to opal pty code * rename ompi_qsort to opal_qsort This commit was SVN r6335.
107 строки
3.0 KiB
C
107 строки
3.0 KiB
C
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
* All rights reserved.
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
* All rights reserved.
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
* University of Stuttgart. All rights reserved.
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef OMPI_WIN_COMPAT_H
|
|
#define OMPI_WIN_COMPAT_H
|
|
|
|
/* It is always better to include windows.h with the lean and mean option.
|
|
So, include it with that option and then include some which are required
|
|
for us in ompi. Note: this file is included only on windows */
|
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#undef WIN32_LEAN_AND_MEAN
|
|
#endif
|
|
|
|
/* FD_SETSIZE determines how many sockets windows can select() on. If not defined
|
|
before including winsock2.h, it is defined to be 64. We are going to go ahead and
|
|
make it 1024 for now. PLEASE CHECK IF THIS IS RIGHT */
|
|
#define FD_SETSIZE 1024
|
|
|
|
/* other utility header files */
|
|
#include <cderr.h>
|
|
#include <dde.h>
|
|
#include <ddeml.h>
|
|
#include <dlgs.h>
|
|
#include <imm.h>
|
|
#include <lzexpand.h>
|
|
#include <mmsystem.h>
|
|
#include <nb30.h>
|
|
#include <rpc.h>
|
|
#include <shellapi.h>
|
|
#include <winperf.h>
|
|
#include <winsock2.h>
|
|
#include <ws2tcpip.h>
|
|
#include <process.h>
|
|
#include <io.h>
|
|
#include <signal.h>
|
|
/*#if defined(OMPI_BUILDING) && OMPI_BUILDING */
|
|
#include "win32/ompi_uio.h"
|
|
#include "win32/ompi_time.h"
|
|
#include "win32/ompi_utsname.h"
|
|
#include "win32/ompi_util.h"
|
|
#include "win32/ompi_misc.h"
|
|
#include "opal/util/printf.h"
|
|
/*#endif*/
|
|
|
|
#define MAXPATHLEN MAX_PATH
|
|
#define MAXHOSTNAMELEN MAX_PATH
|
|
typedef unsigned short mode_t;
|
|
typedef long ssize_t;
|
|
typedef DWORD in_port_t;
|
|
typedef int caddr_t;
|
|
typedef unsigned int uint;
|
|
|
|
/* Anju: some random #defines which I know offhand, but need to configure it */
|
|
#define OMPI_ALIGNMENT_CXX_BOOL OMPI_ALIGNMENT_INT
|
|
#define SIZEOF_BOOL SIZEOF_INT
|
|
#define getpid _getpid
|
|
#define getcwd _getcwd
|
|
#define mkdir _mkdir
|
|
|
|
#define UINT32_MAX _UI32_MAX
|
|
#define INT32_MAX _I32_MAX
|
|
|
|
#define SIZEOF_SIZE_T 4
|
|
#define __func__ __FUNCTION__
|
|
|
|
/* Ugly signal mapping since windows doesn't support the full spectrum
|
|
* just a very small subset... :/
|
|
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_crt_raise.asp
|
|
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnucmg/html/UCMGch09.asp
|
|
*/
|
|
#define SIGCHLD SIGILL
|
|
#define SIGKILL WM_QUIT
|
|
|
|
/* Note:
|
|
* The two defines below are likely to break the orte_wait
|
|
* functionality. The proper method of replacing these bits
|
|
* of functionality is left for further investigated.
|
|
*/
|
|
#define WUNTRACED 0
|
|
#define WNOHANG 0
|
|
|
|
#define sigset_t int
|
|
|
|
/*
|
|
* Mask these to Windows equlivants
|
|
*/
|
|
#define bzero(p, l) memset(p, 0, l)
|
|
#define bcopy(s, t, l) memmove(t, s, l)
|
|
|
|
#endif /* compat */
|