FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Include/pydtrace.d at main · https-github-com-nzysoft/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
https-github-com-nzysoft
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Include
/
pydtrace.d
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (20 loc) · 1008 Bytes
Breadcrumbs
cpython
/
Include
/
pydtrace.d
Copy path
File metadata and controls
22 lines (20 loc) · 1008 Bytes
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
/* Python DTrace provider */
provider
python
{
probe
function__entry
(
const
char
*
,
const
char
*
,
int
);
probe
function__return
(
const
char
*
,
const
char
*
,
int
);
probe
instance__new__start
(
const
char
*
,
const
char
*
);
probe
instance__new__done
(
const
char
*
,
const
char
*
);
probe
instance__delete__start
(
const
char
*
,
const
char
*
);
probe
instance__delete__done
(
const
char
*
,
const
char
*
);
probe
line
(
const
char
*
,
const
char
*
,
int
);
probe
gc__start
(
int
);
probe
gc__done
(
long
);
probe
import__find__load__start
(
const
char
*
);
probe
import__find__load__done
(
const
char
*
,
int
);
probe
audit
(
const
char
*
,
void
*
);
};
#pragma
D attributes Evolving/Evolving/Common provider python provider
#pragma
D attributes Evolving/Evolving/Common provider python module
#pragma
D attributes Evolving/Evolving/Common provider python function
#pragma
D attributes Evolving/Evolving/Common provider python name
#pragma
D attributes Evolving/Evolving/Common provider python args
Back
|
FazBrowse Home
|
New Git URL