Remove WakeupFd bindings for windows
parent
eefd9dbc8b
commit
8531cecce7
|
@ -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)))
|
||||
}
|
||||
|
|
|
@ -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)))
|
||||
}
|
Loading…
Reference in New Issue