mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
bpo-38960: DTrace build fix for FreeBSD. (GH-17451)
DTrace build fix for FreeBSD. - allowing passing an extra flag as it need to define the arch size. - casting some probe's arguments.
This commit is contained in:
parent
2cca8efe46
commit
aabdeb766b
6 changed files with 9 additions and 10 deletions
|
@ -204,7 +204,7 @@ PySys_Audit(const char *event, const char *argFormat, ...)
|
|||
|
||||
/* Dtrace USDT point */
|
||||
if (dtrace) {
|
||||
PyDTrace_AUDIT(event, (void *)eventArgs);
|
||||
PyDTrace_AUDIT((char *)event, (void *)eventArgs);
|
||||
}
|
||||
|
||||
/* Call interpreter hooks */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue