我想为我的 Android 应用程序使用 __NR_perf_event_open 的系统调用。
该代码在 linux 上正常运行,但在 Android 上无法运行。
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <sys/ioctl.h>
#include <perf_event.h>
#include <asm/unistd.h>
long perf_event_open( struct perf_event_attr *hw_event, pid_t pid,
int cpu, int group_fd, unsigned long flags )
{
int ret;
ret = syscall( __NR_perf_event_open, hw_event, pid, cpu,
group_fd, flags );
return ret;
}
int main() {
//In the main function, I call perf_event_open:
struct perf_event_attr pe;
int fd;
fd = perf_event_open(&pe, 0, -1, -1, 0);
...
}
但是,fd 始终返回值 -1。当我使用“errno.h”时,它给出了错误信息:EBADF:bad file descriptor。