Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
vmprof-python/src/vmprof_unix.h at master · vmprof/vmprof-python · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
vmprof
/
vmprof-python
Public
Notifications
You must be signed in to change notification settings
Fork
55
Star
439
Code
Issues
54
Pull requests
5
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
vmprof-python
/
src
/
vmprof_unix.h
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
89 lines (71 loc) · 2.4 KB
master
Breadcrumbs
vmprof-python
/
src
/
vmprof_unix.h
Copy path
Top
File metadata and controls
Code
Blame
89 lines (71 loc) · 2.4 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#pragma
once
/* VMPROF
*
* statistical sampling profiler specifically designed to profile programs
* which run on a Virtual Machine and/or bytecode interpreter, such as Python,
* etc.
*
* The logic to dump the C stack traces is partly stolen from the code in
* gperftools.
* The file "getpc.h" has been entirely copied from gperftools.
*
* Tested only on gcc, linux, x86_64.
*
* Copyright (C) 2014-2017
* Antonio Cuni - anto.cuni@gmail.com
* Maciej Fijalkowski - fijall@gmail.com
* Armin Rigo - arigo@tunes.org
* Richard Plangger - planrichi@gmail.com
*
*/
#include
"vmprof.h"
#include
"vmprof_mt.h"
#ifdef
__FreeBSD__
#include
<ucontext.h>
#endif
#include
<signal.h>
RPY_EXTERN
void
vmprof_ignore_signals
(
int
ignored
);
RPY_EXTERN
long
vmprof_enter_signal
(
void
);
RPY_EXTERN
long
vmprof_exit_signal
(
void
);
/* *************************************************************
* functions to dump the stack trace
* *************************************************************
*/
#ifndef
RPYTHON_VMPROF
PY_THREAD_STATE_T
*
_get_pystate_for_this_thread
(
void
);
#endif
int
get_stack_trace
(
PY_THREAD_STATE_T
*
current
,
void
*
*
result
,
int
max_depth
,
intptr_t
pc
);
/* *************************************************************
* the signal handler
* *************************************************************
*/
#include
<setjmp.h>
void
segfault_handler
(
int
arg
);
int
_vmprof_sample_stack
(
struct
profbuf_s
*
p
,
PY_THREAD_STATE_T
*
tstate
,
ucontext_t
*
uc
);
void
sigprof_handler
(
int
sig_nr
,
siginfo_t
*
info
,
void
*
ucontext
);
/* *************************************************************
* the setup and teardown functions
* *************************************************************
*/
int
install_sigprof_handler
(
void
);
int
remove_sigprof_handler
(
void
);
int
install_sigprof_timer
(
void
);
int
remove_sigprof_timer
(
void
);
void
atfork_disable_timer
(
void
);
void
atfork_enable_timer
(
void
);
void
atfork_close_profile_file
(
void
);
int
install_pthread_atfork_hooks
(
void
);
#ifdef
VMP_SUPPORTS_NATIVE_PROFILING
void
init_cpyprof
(
int
native
);
static
void
disable_cpyprof
(
void
);
#endif
int
close_profile
(
void
);
RPY_EXTERN
int
vmprof_enable
(
int
memory
,
int
native
,
int
real_time
);
RPY_EXTERN
int
vmprof_disable
(
void
);
RPY_EXTERN
int
vmprof_register_virtual_function
(
char
*
code_name
,
intptr_t
code_uid
,
int
auto_retry
);
void
vmprof_aquire_lock
(
void
);
void
vmprof_release_lock
(
void
);
You can’t perform that action at this time.