forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.h
48 lines (36 loc) · 1.29 KB
/
util.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2019-present Datadog, Inc.
#ifndef DATADOG_AGENT_RTLOADER_UTIL_H
#define DATADOG_AGENT_RTLOADER_UTIL_H
/*! \file util.h
\brief RtLoader util builtin header file.
The prototypes here defined provide functions to initialize the python util
builtin module, and set its relevant callbacks for the rtloader caller.
*/
#include <Python.h>
#include <rtloader_types.h>
#define UTIL_MODULE_NAME "util"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef DATADOG_AGENT_THREE
/*! \fn void PyInit_util()
\brief Initializes the util builtin python module.
The 'util' python builtin is created with the methods from the PyMethodDef
array in 'util.c' and registered into python. This function is python3 only.
*/
PyMODINIT_FUNC PyInit_util(void);
#elif defined(DATADOG_AGENT_TWO)
/*! \fn void Py2_init_util()
\brief Initializes the util builtin python module.
The 'util' python builtin is created with the methods from the PyMethodDef
array in 'util.c' and registered into python. This function is python2 only.
*/
void Py2_init_util();
#endif
#ifdef __cplusplus
}
#endif
#endif