Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.package
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Klaus Wölfel
slapos.package
Commits
bffefc84
Commit
bffefc84
authored
Apr 30, 2013
by
Jondy Zhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch psutil for cygwin
parent
a53a068c
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
552 additions
and
10 deletions
+552
-10
windows/psutil/psutil.egg-info/PKG-INFO
windows/psutil/psutil.egg-info/PKG-INFO
+3
-3
windows/psutil/psutil.egg-info/SOURCES.txt
windows/psutil/psutil.egg-info/SOURCES.txt
+2
-0
windows/psutil/psutil.egg-info/top_level.txt
windows/psutil/psutil.egg-info/top_level.txt
+1
-2
windows/psutil/psutil/__init__.py
windows/psutil/psutil/__init__.py
+10
-1
windows/psutil/psutil/_psutil_mswindows.c
windows/psutil/psutil/_psutil_mswindows.c
+15
-2
windows/psutil/psutil/arch/mswindows/security.c
windows/psutil/psutil/arch/mswindows/security.c
+2
-0
windows/psutil/psutil/arch/mswindows/security.h
windows/psutil/psutil/arch/mswindows/security.h
+6
-2
windows/psutil/psutil/tchar.h
windows/psutil/psutil/tchar.h
+488
-0
windows/psutil/setup.py
windows/psutil/setup.py
+25
-0
No files found.
windows/psutil/psutil.egg-info/PKG-INFO
View file @
bffefc84
Metadata-Version: 1.
1
Metadata-Version: 1.
0
Name: psutil
Name: psutil
Version: 0.6.1
Version: 0.6.
0
1
Summary: A process and system utilities module for Python
Summary: A process and system utilities module for Python
Home-page: http://code.google.com/p/psutil/
Home-page: http://code.google.com/p/psutil/
Author: Giampaolo Rodola
Author: Giampaolo Rodola
Author-email: g.rodola <at> gmail <dot> com
Author-email: g.rodola <at> gmail <dot> com
License: License :: OSI Approved :: BSD License
License: License :: OSI Approved :: BSD License
Download-URL: http://psutil.googlecode.com/files/psutil-0.6.1.tar.gz
Download-URL: http://psutil.googlecode.com/files/psutil-0.6.
0
1.tar.gz
Description: ===========
Description: ===========
Quick links
Quick links
===========
===========
...
...
windows/psutil/psutil.egg-info/SOURCES.txt
View file @
bffefc84
...
@@ -4,6 +4,7 @@ INSTALL
...
@@ -4,6 +4,7 @@ INSTALL
LICENSE
LICENSE
MANIFEST.in
MANIFEST.in
README
README
setup.cfg
setup.py
setup.py
examples/disk_usage.py
examples/disk_usage.py
examples/free.py
examples/free.py
...
@@ -37,6 +38,7 @@ psutil/_psutil_osx.h
...
@@ -37,6 +38,7 @@ psutil/_psutil_osx.h
psutil/_psutil_posix.c
psutil/_psutil_posix.c
psutil/_psutil_posix.h
psutil/_psutil_posix.h
psutil/error.py
psutil/error.py
psutil/tchar.h
psutil.egg-info/PKG-INFO
psutil.egg-info/PKG-INFO
psutil.egg-info/SOURCES.txt
psutil.egg-info/SOURCES.txt
psutil.egg-info/dependency_links.txt
psutil.egg-info/dependency_links.txt
...
...
windows/psutil/psutil.egg-info/top_level.txt
View file @
bffefc84
psutil
psutil
_psutil_linux
_psutil_mswindows
_psutil_posix
windows/psutil/psutil/__init__.py
View file @
bffefc84
...
@@ -14,7 +14,7 @@ Python.
...
@@ -14,7 +14,7 @@ Python.
from
__future__
import
division
from
__future__
import
division
__version__
=
"0.6.1"
__version__
=
"0.6.
0
1"
version_info
=
tuple
([
int
(
num
)
for
num
in
__version__
.
split
(
'.'
)])
version_info
=
tuple
([
int
(
num
)
for
num
in
__version__
.
split
(
'.'
)])
__all__
=
[
__all__
=
[
...
@@ -90,6 +90,15 @@ elif sys.platform.startswith("cygwin"):
...
@@ -90,6 +90,15 @@ elif sys.platform.startswith("cygwin"):
NORMAL_PRIORITY_CLASS
,
NORMAL_PRIORITY_CLASS
,
REALTIME_PRIORITY_CLASS
)
REALTIME_PRIORITY_CLASS
)
elif
sys
.
platform
.
startswith
(
"cygwin"
):
import
psutil._psmswindows
as
_psplatform
from
psutil._psmswindows
import
(
ABOVE_NORMAL_PRIORITY_CLASS
,
BELOW_NORMAL_PRIORITY_CLASS
,
HIGH_PRIORITY_CLASS
,
IDLE_PRIORITY_CLASS
,
NORMAL_PRIORITY_CLASS
,
REALTIME_PRIORITY_CLASS
)
elif
sys
.
platform
.
startswith
(
"darwin"
):
elif
sys
.
platform
.
startswith
(
"darwin"
):
import
psutil._psosx
as
_psplatform
import
psutil._psosx
as
_psplatform
...
...
windows/psutil/psutil/_psutil_mswindows.c
View file @
bffefc84
...
@@ -17,14 +17,22 @@
...
@@ -17,14 +17,22 @@
#include <time.h>
#include <time.h>
#include <lm.h>
#include <lm.h>
#include <WinIoCtl.h>
#include <WinIoCtl.h>
#if defined(__CYGWIN__)
#include "tchar.h"
#else
#include <tchar.h>
#include <tchar.h>
#endif
#include <tlhelp32.h>
#include <tlhelp32.h>
#include <winsock2.h>
#include <winsock2.h>
#include <iphlpapi.h>
#include <iphlpapi.h>
#include <wtsapi32.h>
#include <wtsapi32.h>
// Link with Iphlpapi.lib
// Link with Iphlpapi.lib
#if !defined(__CYGWIN__)
#pragma comment(lib, "IPHLPAPI.lib")
#pragma comment(lib, "IPHLPAPI.lib")
#endif
#include "_psutil_mswindows.h"
#include "_psutil_mswindows.h"
#include "_psutil_common.h"
#include "_psutil_common.h"
...
@@ -552,7 +560,11 @@ static PyObject*
...
@@ -552,7 +560,11 @@ static PyObject*
get_process_exe
(
PyObject
*
self
,
PyObject
*
args
)
{
get_process_exe
(
PyObject
*
self
,
PyObject
*
args
)
{
long
pid
;
long
pid
;
HANDLE
hProcess
;
HANDLE
hProcess
;
#if defined(_UNICODE)
wchar_t
exe
[
MAX_PATH
];
wchar_t
exe
[
MAX_PATH
];
#else
char
exe
[
MAX_PATH
];
#endif
DWORD
nSize
=
MAX_PATH
;
DWORD
nSize
=
MAX_PATH
;
if
(
!
PyArg_ParseTuple
(
args
,
"l"
,
&
pid
))
{
if
(
!
PyArg_ParseTuple
(
args
,
"l"
,
&
pid
))
{
...
@@ -1379,7 +1391,7 @@ static char *state_to_string(ULONG state)
...
@@ -1379,7 +1391,7 @@ static char *state_to_string(ULONG state)
}
}
/* mingw support */
/* mingw support */
#if
ndef _IPRTRMIB_H
#if
!defined(_IPRTRMIB_H) && !defined(__CYGWIN__)
typedef
struct
_MIB_TCP6ROW_OWNER_PID
typedef
struct
_MIB_TCP6ROW_OWNER_PID
{
{
UCHAR
ucLocalAddr
[
16
];
UCHAR
ucLocalAddr
[
16
];
...
@@ -1429,6 +1441,7 @@ typedef struct _MIB_UDPTABLE_OWNER_PID
...
@@ -1429,6 +1441,7 @@ typedef struct _MIB_UDPTABLE_OWNER_PID
#endif
#endif
/* end of mingw support */
/* end of mingw support */
#if ! defined(__CYGWIN__)
typedef
struct
_MIB_UDP6ROW_OWNER_PID
{
typedef
struct
_MIB_UDP6ROW_OWNER_PID
{
UCHAR
ucLocalAddr
[
16
];
UCHAR
ucLocalAddr
[
16
];
DWORD
dwLocalScopeId
;
DWORD
dwLocalScopeId
;
...
@@ -1441,7 +1454,7 @@ typedef struct _MIB_UDP6TABLE_OWNER_PID
...
@@ -1441,7 +1454,7 @@ typedef struct _MIB_UDP6TABLE_OWNER_PID
DWORD
dwNumEntries
;
DWORD
dwNumEntries
;
MIB_UDP6ROW_OWNER_PID
table
[
ANY_SIZE
];
MIB_UDP6ROW_OWNER_PID
table
[
ANY_SIZE
];
}
MIB_UDP6TABLE_OWNER_PID
,
*
PMIB_UDP6TABLE_OWNER_PID
;
}
MIB_UDP6TABLE_OWNER_PID
,
*
PMIB_UDP6TABLE_OWNER_PID
;
#endif
#define ConnDecrefPyObjs() Py_DECREF(_AF_INET); \
#define ConnDecrefPyObjs() Py_DECREF(_AF_INET); \
Py_DECREF(_AF_INET6);\
Py_DECREF(_AF_INET6);\
...
...
windows/psutil/psutil/arch/mswindows/security.c
View file @
bffefc84
...
@@ -12,6 +12,8 @@
...
@@ -12,6 +12,8 @@
#include <windows.h>
#include <windows.h>
#include <Python.h>
#include <Python.h>
#include "security.h"
/*
/*
* Convert a process handle to a process token handle.
* Convert a process handle to a process token handle.
*/
*/
...
...
windows/psutil/psutil/arch/mswindows/security.h
View file @
bffefc84
...
@@ -11,10 +11,14 @@
...
@@ -11,10 +11,14 @@
#include <windows.h>
#include <windows.h>
#if defined(__CYGWIN__)
#define PyErr_SetFromWindowsErr(n) \
PyErr_Format(PyExc_RuntimeError, "Windoows Error: %d\n", n)
#endif
BOOL
SetPrivilege
(
HANDLE
hToken
,
LPCTSTR
Privilege
,
BOOL
bEnablePrivilege
);
BOOL
SetPrivilege
(
HANDLE
hToken
,
LPCTSTR
Privilege
,
BOOL
bEnablePrivilege
);
int
SetSeDebug
();
int
SetSeDebug
(
void
);
int
UnsetSeDebug
();
int
UnsetSeDebug
(
void
);
HANDLE
token_from_handle
(
HANDLE
hProcess
);
HANDLE
token_from_handle
(
HANDLE
hProcess
);
int
HasSystemPrivilege
(
HANDLE
hProcess
);
int
HasSystemPrivilege
(
HANDLE
hProcess
);
windows/psutil/psutil/tchar.h
0 → 100644
View file @
bffefc84
/*
* tchar.h
* This file has no copyright assigned and is placed in the Public Domain.
* This file is a part of the mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER within the package.
*
* Unicode mapping layer for the standard C library. By including this
* file and using the 't' names for string functions
* (eg. _tprintf) you can make code which can be easily adapted to both
* Unicode and non-unicode environments. In a unicode enabled compile define
* _UNICODE before including tchar.h, otherwise the standard non-unicode
* library functions will be used.
*
* Note that you still need to include string.h or stdlib.h etc. to define
* the appropriate functions. Also note that there are several defines
* included for non-ANSI functions which are commonly available (but using
* the convention of prepending an underscore to non-ANSI library function
* names).
*
*/
#ifndef _TCHAR_H_
#define _TCHAR_H_
/* All the headers include this file. */
//#include <_mingw.h>
/*
* NOTE: This tests _UNICODE, which is different from the UNICODE define
* used to differentiate Win32 API calls.
*/
#ifdef _UNICODE
/*
* Include <wchar.h> for wchar_t and WEOF if _UNICODE.
*/
#include <wchar.h>
/*
* Use TCHAR instead of char or wchar_t. It will be appropriately translated
* if _UNICODE is correctly defined (or not).
*/
#ifndef _TCHAR_DEFINED
#ifndef RC_INVOKED
typedef
wchar_t
TCHAR
;
typedef
wchar_t
_TCHAR
;
#endif
/* Not RC_INVOKED */
#define _TCHAR_DEFINED
#endif
/*
* Use _TEOF instead of EOF or WEOF. It will be appropriately translated if
* _UNICODE is correctly defined (or not).
*/
#define _TEOF WEOF
/*
* __TEXT is a private macro whose specific use is to force the expansion of a
* macro passed as an argument to the macros _T or _TEXT. DO NOT use this
* macro within your programs. It's name and function could change without
* notice.
*/
#ifndef __TEXT
#define __TEXT(q) L##q
#endif
/* for porting from other Windows compilers */
#if 0 /* no wide startup module */
#define _tmain wmain
#define _tWinMain wWinMain
#define _tenviron _wenviron
#define __targv __wargv
#endif
/*
* Unicode functions
*/
#define _tprintf wprintf
#define _ftprintf fwprintf
#define _stprintf swprintf
#define _sntprintf _snwprintf
#define _vtprintf vwprintf
#define _vftprintf vfwprintf
#define _vstprintf vswprintf
#define _vsntprintf _vsnwprintf
#define _vsctprintf _vscwprintf
#define _tscanf wscanf
#define _ftscanf fwscanf
#define _stscanf swscanf
#define _fgettc fgetwc
#define _fgettchar _fgetwchar
#define _fgetts fgetws
#define _fputtc fputwc
#define _fputtchar _fputwchar
#define _fputts fputws
#define _gettc getwc
#define _getts _getws
#define _puttc putwc
#define _puttchar putwchar
#define _putts _putws
#define _ungettc ungetwc
#define _tcstod wcstod
#define _tcstol wcstol
#define _tcstoul wcstoul
#define _itot _itow
#define _ltot _ltow
#define _ultot _ultow
#define _ttoi _wtoi
#define _ttol _wtol
#define _tcscat wcscat
#define _tcschr wcschr
#define _tcscmp wcscmp
#define _tcscpy wcscpy
#define _tcscspn wcscspn
#define _tcslen wcslen
#define _tcsncat wcsncat
#define _tcsncmp wcsncmp
#define _tcsncpy wcsncpy
#define _tcspbrk wcspbrk
#define _tcsrchr wcsrchr
#define _tcsspn wcsspn
#define _tcsstr wcsstr
#define _tcstok wcstok
#define _tcsdup _wcsdup
#define _tcsicmp _wcsicmp
#define _tcsnicmp _wcsnicmp
#define _tcsnset _wcsnset
#define _tcsrev _wcsrev
#define _tcsset _wcsset
#define _tcslwr _wcslwr
#define _tcsupr _wcsupr
#define _tcsxfrm wcsxfrm
#define _tcscoll wcscoll
#define _tcsicoll _wcsicoll
#define _istalpha iswalpha
#define _istupper iswupper
#define _istlower iswlower
#define _istdigit iswdigit
#define _istxdigit iswxdigit
#define _istspace iswspace
#define _istpunct iswpunct
#define _istalnum iswalnum
#define _istprint iswprint
#define _istgraph iswgraph
#define _istcntrl iswcntrl
#define _istascii iswascii
#define _totupper towupper
#define _totlower towlower
#define _tcsftime wcsftime
/* Macro functions */
#define _tcsdec _wcsdec
#define _tcsinc _wcsinc
#define _tcsnbcnt _wcsncnt
#define _tcsnccnt _wcsncnt
#define _tcsnextc _wcsnextc
#define _tcsninc _wcsninc
#define _tcsspnp _wcsspnp
#define _wcsdec(_wcs1, _wcs2) ((_wcs1)>=(_wcs2) ? NULL : (_wcs2)-1)
#define _wcsinc(_wcs) ((_wcs)+1)
#define _wcsnextc(_wcs) ((unsigned int) *(_wcs))
#define _wcsninc(_wcs, _inc) (((_wcs)+(_inc)))
#define _wcsncnt(_wcs, _cnt) ((wcslen(_wcs)>_cnt) ? _count : wcslen(_wcs))
#define _wcsspnp(_wcs1, _wcs2) ((*((_wcs1)+wcsspn(_wcs1,_wcs2))) ? ((_wcs1)+wcsspn(_wcs1,_wcs2)) : NULL)
#if 1
/* defined __MSVCRT__ */
/*
* These wide functions not in crtdll.dll.
* Define macros anyway so that _wfoo rather than _tfoo is undefined
*/
#define _ttoi64 _wtoi64
#define _i64tot _i64tow
#define _ui64tot _ui64tow
#define _tasctime _wasctime
#define _tctime _wctime
#if __MSVCRT_VERSION__ >= 0x0800
#define _tctime32 _wctime32
#define _tctime64 _wctime64
#endif
/* __MSVCRT_VERSION__ >= 0x0800 */
#define _tstrdate _wstrdate
#define _tstrtime _wstrtime
#define _tutime _wutime
#if __MSVCRT_VERSION__ >= 0x0800
#define _tutime64 _wutime64
#define _tutime32 _wutime32
#endif
/* __MSVCRT_VERSION__ > 0x0800 */
#define _tcsnccoll _wcsncoll
#define _tcsncoll _wcsncoll
#define _tcsncicoll _wcsnicoll
#define _tcsnicoll _wcsnicoll
#define _taccess _waccess
#define _tchmod _wchmod
#define _tcreat _wcreat
#define _tfindfirst _wfindfirst
#define _tfindnext _wfindnext
#if __MSVCRT_VERSION__ >= 0x0800
#define _tfindfirst64 _wfindfirst64
#define _tfindfirst32 _wfindfirst32
#define _tfindnext64 _wfindnext64
#define _tfindnext32 _wfindnext32
#endif
/* __MSVCRT_VERSION__ > 0x0800 */
#define _tfdopen _wfdopen
#define _tfopen _wfopen
#define _tfreopen _wfreopen
#define _tfsopen _wfsopen
#define _tgetenv _wgetenv
#define _tputenv _wputenv
#define _tsearchenv _wsearchenv
#define _tsystem _wsystem
#define _tmakepath _wmakepath
#define _tsplitpath _wsplitpath
#define _tfullpath _wfullpath
#define _tmktemp _wmktemp
#define _topen _wopen
#define _tremove _wremove
#define _trename _wrename
#define _tsopen _wsopen
#define _tsetlocale _wsetlocale
#define _tunlink _wunlink
#define _tfinddata_t _wfinddata_t
#define _tfindfirsti64 _wfindfirsti64
#define _tfindnexti64 _wfindnexti64
#define _tfinddatai64_t _wfinddatai64_t
#if __MSVCRT_VERSION__ >= 0x0601
#define _tfinddata64_t _wfinddata64_t
#endif
#if __MSVCRT_VERSION__ >= 0x0800
#define _tfinddata32_t _wfinddata32_t
#define _tfinddata32i64_t _wfinddata32i64_t
#define _tfinddata64i32_t _wfinddata64i32_t
#define _tfindfirst32i64 _wfindfirst32i64
#define _tfindfirst64i32 _wfindfirst64i32
#define _tfindnext32i64 _wfindnext32i64
#define _tfindnext64i32 _wfindnext64i32
#endif
/* __MSVCRT_VERSION__ > 0x0800 */
#define _tchdir _wchdir
#define _tgetcwd _wgetcwd
#define _tgetdcwd _wgetdcwd
#define _tmkdir _wmkdir
#define _trmdir _wrmdir
#define _tstat _wstat
#define _tstati64 _wstati64
#define _tstat64 _wstat64
#if __MSVCRT_VERSION__ >= 0x0800
#define _tstat32 _wstat32
#define _tstat32i64 _wstat32i64
#define _tstat64i32 _wstat64i32
#endif
/* __MSVCRT_VERSION__ > 0x0800 */
#endif
/* __MSVCRT__ */
/* dirent structures and functions */
#define _tdirent _wdirent
#define _TDIR _WDIR
#define _topendir _wopendir
#define _tclosedir _wclosedir
#define _treaddir _wreaddir
#define _trewinddir _wrewinddir
#define _ttelldir _wtelldir
#define _tseekdir _wseekdir
#else
/* Not _UNICODE */
/*
* TCHAR, the type you should use instead of char.
*/
#ifndef _TCHAR_DEFINED
#ifndef RC_INVOKED
typedef
char
TCHAR
;
typedef
char
_TCHAR
;
#endif
#define _TCHAR_DEFINED
#endif
/*
* _TEOF, the constant you should use instead of EOF.
*/
#define _TEOF EOF
/*
* __TEXT is a private macro whose specific use is to force the expansion of a
* macro passed as an argument to the macros _T or _TEXT. DO NOT use this
* macro within your programs. It's name and function could change without
* notice.
*/
#ifndef __TEXT
#define __TEXT(q) q
#endif
/* for porting from other Windows compilers */
#define _tmain main
#define _tWinMain WinMain
#define _tenviron _environ
#define __targv __argv
/*
* Non-unicode (standard) functions
*/
#define _tprintf printf
#define _ftprintf fprintf
#define _stprintf sprintf
#define _sntprintf _snprintf
#define _vtprintf vprintf
#define _vftprintf vfprintf
#define _vstprintf vsprintf
#define _vsntprintf _vsnprintf
#define _vsctprintf _vscprintf
#define _tscanf scanf
#define _ftscanf fscanf
#define _stscanf sscanf
#define _fgettc fgetc
#define _fgettchar _fgetchar
#define _fgetts fgets
#define _fputtc fputc
#define _fputtchar _fputchar
#define _fputts fputs
#define _tfdopen _fdopen
#define _tfopen fopen
#define _tfreopen freopen
#define _tfsopen _fsopen
#define _tgetenv getenv
#define _tputenv _putenv
#define _tsearchenv _searchenv
#define _tsystem system
#define _tmakepath _makepath
#define _tsplitpath _splitpath
#define _tfullpath _fullpath
#define _gettc getc
#define _getts gets
#define _puttc putc
#define _puttchar putchar
#define _putts puts
#define _ungettc ungetc
#define _tcstod strtod
#define _tcstol strtol
#define _tcstoul strtoul
#define _itot _itoa
#define _ltot _ltoa
#define _ultot _ultoa
#define _ttoi atoi
#define _ttol atol
#define _tcscat strcat
#define _tcschr strchr
#define _tcscmp strcmp
#define _tcscpy strcpy
#define _tcscspn strcspn
#define _tcslen strlen
#define _tcsncat strncat
#define _tcsncmp strncmp
#define _tcsncpy strncpy
#define _tcspbrk strpbrk
#define _tcsrchr strrchr
#define _tcsspn strspn
#define _tcsstr strstr
#define _tcstok strtok
#define _tcsdup _strdup
#define _tcsicmp _stricmp
#define _tcsnicmp _strnicmp
#define _tcsnset _strnset
#define _tcsrev _strrev
#define _tcsset _strset
#define _tcslwr _strlwr
#define _tcsupr _strupr
#define _tcsxfrm strxfrm
#define _tcscoll strcoll
#define _tcsicoll _stricoll
#define _istalpha isalpha
#define _istupper isupper
#define _istlower islower
#define _istdigit isdigit
#define _istxdigit isxdigit
#define _istspace isspace
#define _istpunct ispunct
#define _istalnum isalnum
#define _istprint isprint
#define _istgraph isgraph
#define _istcntrl iscntrl
#define _istascii isascii
#define _totupper toupper
#define _totlower tolower
#define _tasctime asctime
#define _tctime ctime
#if __MSVCRT_VERSION__ >= 0x0800
#define _tctime32 _ctime32
#define _tctime64 _ctime64
#endif
/* __MSVCRT_VERSION__ >= 0x0800 */
#define _tstrdate _strdate
#define _tstrtime _strtime
#define _tutime _utime
#if __MSVCRT_VERSION__ >= 0x0800
#define _tutime64 _utime64
#define _tutime32 _utime32
#endif
/* __MSVCRT_VERSION__ > 0x0800 */
#define _tcsftime strftime
/* Macro functions */
#define _tcsdec _strdec
#define _tcsinc _strinc
#define _tcsnbcnt _strncnt
#define _tcsnccnt _strncnt
#define _tcsnextc _strnextc
#define _tcsninc _strninc
#define _tcsspnp _strspnp
#define _strdec(_str1, _str2) ((_str1)>=(_str2) ? NULL : (_str2)-1)
#define _strinc(_str) ((_str)+1)
#define _strnextc(_str) ((unsigned int) *(_str))
#define _strninc(_str, _inc) (((_str)+(_inc)))
#define _strncnt(_str, _cnt) ((strlen(_str)>_cnt) ? _count : strlen(_str))
#define _strspnp(_str1, _str2) ((*((_str1)+strspn(_str1,_str2))) ? ((_str1)+strspn(_str1,_str2)) : NULL)
#define _tchmod _chmod
#define _tcreat _creat
#define _tfindfirst _findfirst
#define _tfindnext _findnext
#if __MSVCRT_VERSION__ >= 0x0800
#define _tfindfirst64 _findfirst64
#define _tfindfirst32 _findfirst32
#define _tfindnext64 _findnext64
#define _tfindnext32 _findnext32
#endif
/* __MSVCRT_VERSION__ > 0x0800 */
#define _tmktemp _mktemp
#define _topen _open
#define _taccess _access
#define _tremove remove
#define _trename rename
#define _tsopen _sopen
#define _tsetlocale setlocale
#define _tunlink _unlink
#define _tfinddata_t _finddata_t
#define _tchdir _chdir
#define _tgetcwd _getcwd
#define _tgetdcwd _getdcwd
#define _tmkdir _mkdir
#define _trmdir _rmdir
#define _tstat _stat
#if 1
/* defined __MSVCRT__ */
/* Not in crtdll.dll. Define macros anyway? */
#define _ttoi64 _atoi64
#define _i64tot _i64toa
#define _ui64tot _ui64toa
#define _tcsnccoll _strncoll
#define _tcsncoll _strncoll
#define _tcsncicoll _strnicoll
#define _tcsnicoll _strnicoll
#define _tfindfirsti64 _findfirsti64
#define _tfindnexti64 _findnexti64
#define _tfinddatai64_t _finddatai64_t
#if __MSVCRT_VERSION__ >= 0x0601
#define _tfinddata64_t _finddata64_t
#endif
#if __MSVCRT_VERSION__ >= 0x0800
#define _tfinddata32_t _finddata32_t
#define _tfinddata32i64_t _finddata32i64_t
#define _tfinddata64i32_t _finddata64i32_t
#define _tfindfirst32i64 _findfirst32i64
#define _tfindfirst64i32 _findfirst64i32
#define _tfindnext32i64 _findnext32i64
#define _tfindnext64i32 _findnext64i32
#endif
/* __MSVCRT_VERSION__ > 0x0800 */
#define _tstati64 _stati64
#define _tstat64 _stat64
#if __MSVCRT_VERSION__ >= 0x0800
#define _tstat32 _stat32
#define _tstat32i64 _stat32i64
#define _tstat64i32 _stat64i32
#endif
/* __MSVCRT_VERSION__ > 0x0800 */
#endif
/* __MSVCRT__ */
/* dirent structures and functions */
#define _tdirent dirent
#define _TDIR DIR
#define _topendir opendir
#define _tclosedir closedir
#define _treaddir readdir
#define _trewinddir rewinddir
#define _ttelldir telldir
#define _tseekdir seekdir
#endif
/* Not _UNICODE */
/*
* UNICODE a constant string when _UNICODE is defined else returns the string
* unmodified. Also defined in w32api/winnt.h.
*/
#define _TEXT(x) __TEXT(x)
#define _T(x) __TEXT(x)
#endif
/* Not _TCHAR_H_ */
windows/psutil/setup.py
View file @
bffefc84
...
@@ -67,6 +67,31 @@ if sys.platform.startswith("win32"):
...
@@ -67,6 +67,31 @@ if sys.platform.startswith("win32"):
#extra_compile_args=["/Z7"],
#extra_compile_args=["/Z7"],
#extra_link_args=["/DEBUG"]
#extra_link_args=["/DEBUG"]
)]
)]
elif
sys
.
platform
.
startswith
(
"cygwin"
):
def
get_winver
():
return
'0x0503'
maj
,
min
=
sys
.
getwindowsversion
()[
0
:
2
]
return
'0x0%s'
%
((
maj
*
100
)
+
min
)
extensions
=
[
Extension
(
'_psutil_mswindows'
,
sources
=
[
'psutil/_psutil_mswindows.c'
,
'psutil/_psutil_common.c'
,
'psutil/arch/mswindows/process_info.c'
,
'psutil/arch/mswindows/process_handles.c'
,
'psutil/arch/mswindows/security.c'
],
define_macros
=
[(
'_WIN32_WINNT'
,
get_winver
()),
(
'_AVAIL_WINVER_'
,
get_winver
()),
# ('_UNICODE', 1),
(
'USE_SYS_TYPES_FD_SET'
,
1
),
(
'__USE_W32_SOCKETS'
,
1
)],
libraries
=
[
"psapi"
,
"kernel32"
,
"advapi32"
,
"shell32"
,
"netapi32"
,
"iphlpapi"
,
"wtsapi32"
],
#extra_compile_args=["/Z7"],
#extra_link_args=["/DEBUG"]
)]
# OS X
# OS X
elif
sys
.
platform
.
startswith
(
"darwin"
):
elif
sys
.
platform
.
startswith
(
"darwin"
):
extensions
=
[
Extension
(
'_psutil_osx'
,
extensions
=
[
Extension
(
'_psutil_osx'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment