1

我想为我的 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。

4

2 回答 2

1

您尚未配置“struct perf_event_attr pe;” 然而

于 2015-07-14T03:23:11.203 回答
0

因为 pid == -1 和 cpu == -1 无效。你可以在http://web.eece.maine.edu/~vweaver/projects/perf_events/perf_event_open.html查看它

于 2013-04-08T13:52:28.097 回答