/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Include/internal/pycore_mmap.h
47 строк
1014 B
Petr Viktorin
gh-149685: Use the _Py prefix for private C macros (GH-149686)
13 май 2026, 20:14
Не верифицирован
13 май 2026, 20:14
125f263
Код
Авторство
О чём код?
#ifndef Py_INTERNAL_MMAP_H #define Py_INTERNAL_MMAP_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include "pycore_pystate.h" #if defined(_Py_HAVE_PR_SET_VMA_ANON_NAME) && defined(__linux__) # include <linux/prctl.h> # include <sys/prctl.h> #endif #if defined(_Py_HAVE_PR_SET_VMA_ANON_NAME) && defined(__linux__) static inline int _PyAnnotateMemoryMap(void *addr, size_t size, const char *name) { #ifndef Py_DEBUG if (!_Py_GetConfig()->dev_mode) { return 0; } #endif // The name length cannot exceed 80 (including the '\0'). assert(strlen(name) < 80); int res = prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, (unsigned long)addr, size, name); if (res < 0) { return -1; } return 0; } #else static inline int _PyAnnotateMemoryMap(void *Py_UNUSED(addr), size_t Py_UNUSED(size), const char *Py_UNUSED(name)) { return 0; } #endif #ifdef __cplusplus } #endif #endif // !Py_INTERNAL_MMAP_H