2018-12-13 22:09:42 +00:00
|
|
|
/*
|
|
|
|
Unless explicitly stated otherwise all files in this repository are licensed
|
2021-08-05 10:47:52 +00:00
|
|
|
under the MIT License.
|
2018-12-13 22:09:42 +00:00
|
|
|
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
|
|
Copyright 2018 Datadog, Inc.
|
|
|
|
*/
|
|
|
|
|
2018-12-06 17:23:54 +00:00
|
|
|
package python3
|
|
|
|
|
|
|
|
/*
|
|
|
|
#include "Python.h"
|
|
|
|
#include "macro.h"
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
//Py_EnterRecursiveCall : https://docs.python.org/3/c-api/exceptions.html#c.Py_EnterRecursiveCall
|
|
|
|
func Py_EnterRecursiveCall(where string) int {
|
|
|
|
cwhere := C.CString(where)
|
2021-10-05 09:13:27 +00:00
|
|
|
defer C.free(unsafe.Pointer(cwhere))
|
2018-12-06 17:23:54 +00:00
|
|
|
|
|
|
|
return int(C._go_Py_EnterRecursiveCall(cwhere))
|
|
|
|
}
|
|
|
|
|
|
|
|
//Py_LeaveRecursiveCall : https://docs.python.org/3/c-api/exceptions.html#c.Py_LeaveRecursiveCall
|
|
|
|
func Py_LeaveRecursiveCall() {
|
|
|
|
C._go_Py_LeaveRecursiveCall()
|
|
|
|
}
|