[pypy-commit] pypy default: Backport changes from py3.5 branch

rlamy pypy.commits at gmail.com
Tue May 2 12:15:56 EDT 2017


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: 
Changeset: r91168:0c21123991d2
Date: 2017-05-02 17:15 +0100
http://bitbucket.org/pypy/pypy/changeset/0c21123991d2/

Log:	Backport changes from py3.5 branch

diff --git a/rpython/rlib/rvmprof/src/rvmprof.h b/rpython/rlib/rvmprof/src/rvmprof.h
--- a/rpython/rlib/rvmprof/src/rvmprof.h
+++ b/rpython/rlib/rvmprof/src/rvmprof.h
@@ -6,8 +6,10 @@
 #define SINGLE_BUF_SIZE (8192 - 2 * sizeof(unsigned int))
 
 #ifdef VMPROF_WINDOWS
-#include "msiinttypes/inttypes.h"
-#include "msiinttypes/stdint.h"
+#include <crtdefs.h>
+typedef __int64 int64_t;
+typedef unsigned __int64 uint64_t;
+typedef intptr_t ssize_t;
 #else
 #include <inttypes.h>
 #include <stdint.h>


More information about the pypy-commit mailing list