[Python-checkins] r70953 - python/trunk/Modules/_multiprocessing/multiprocessing.h

Jesse Noller jnoller at gmail.com
Wed Apr 1 17:53:28 CEST 2009


Hi Hiro, I saw this checkin - talking to Martin this shouldn't be an
issue - what version of VStudio and Windows are you using?

Additionally, if this is an issue, this change needs to be merged to
all of the active branches.

-jesse

On Wed, Apr 1, 2009 at 10:13 AM, hirokazu.yamamoto
<python-checkins at python.org> wrote:
> Author: hirokazu.yamamoto
> Date: Wed Apr  1 17:13:52 2009
> New Revision: 70953
>
> Log:
> Fixed compile error on windows.
>
> Modified:
>   python/trunk/Modules/_multiprocessing/multiprocessing.h
>
> Modified: python/trunk/Modules/_multiprocessing/multiprocessing.h
> ==============================================================================
> --- python/trunk/Modules/_multiprocessing/multiprocessing.h     (original)
> +++ python/trunk/Modules/_multiprocessing/multiprocessing.h     Wed Apr  1 17:13:52 2009
> @@ -16,6 +16,9 @@
>  #  include <windows.h>
>  #  include <winsock2.h>
>  #  include <process.h>              /* getpid() */
> +#  ifdef Py_DEBUG
> +#    include <crtdbg.h>
> +#  endif
>  #  define SEM_HANDLE HANDLE
>  #  define SEM_VALUE_MAX LONG_MAX
>  #else
> _______________________________________________
> Python-checkins mailing list
> Python-checkins at python.org
> http://mail.python.org/mailman/listinfo/python-checkins
>


More information about the Python-checkins mailing list