Vitalii Chernookyi
Vitalii Chernookyi
``` $ jira ls Error in the JQL Query: The character '.' is a reserved JQL character. You must enclose it in a string or use the escape '\u002e' instead....
replace sysconf() with sched_getaffinity(). It allows to ignore non-actual CPUs. example: ```C //... cpu_set_t set; sched_getaffinity(0, sizeof(cpu_set_t), &set) long cpu_qty = CPU_COUNT(&set); //... ``` Existing solution will have problems with...
https://github.com/iovisor/bcc/issues/1033
I'd also filter the PID for the tracer in the code, which should fix that particular issue if you don't already. It is very good to filter out our own...
read execve()/execveat()/* args on entering, because on exiting they do not exist
Probably we should create a 4k buffer on a stack and create output record in that buffer, and write a whole buffer in one call.
At least we need it in man page, and in description of timestamp option. Also, there is a probability that it can create a race-condition.
We should send packets on start because there is no return.