Remove WakeupFd bindings for windows

master
Rémi Calixte 2018-12-20 18:46:23 -05:00 committed by Maxime Mouial
parent eefd9dbc8b
commit 8531cecce7
2 changed files with 18 additions and 5 deletions

View File

@ -165,8 +165,3 @@ func PyErr_CheckSignals() int {
func PyErr_SetInterrupt() {
C.PyErr_SetInterrupt()
}
//PySignal_SetWakeupFd : https://docs.python.org/3/c-api/exceptions.html#c.PySignal_SetWakeupFd
func PySignal_SetWakeupFd(fd uintptr) uintptr {
return uintptr(C.PySignal_SetWakeupFd(C.int(fd)))
}

18
errors_nix.go Normal file
View File

@ -0,0 +1,18 @@
// Unless explicitly stated otherwise all files in this repository are licensed
// under $license_for_repo License.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2018 Datadog, Inc.
// +build !windows
package python3
/*
#include "Python.h"
*/
import "C"
//PySignal_SetWakeupFd : https://docs.python.org/3/c-api/exceptions.html#c.PySignal_SetWakeupFd
func PySignal_SetWakeupFd(fd uintptr) uintptr {
return uintptr(C.PySignal_SetWakeupFd(C.int(fd)))
}