A.C
extern double interrupttime;
interrupttime = timestamp();
//这里我正在计算时间戳并将其存储在中断时间变量中。
B.c //将数据从内核空间复制到用户空间
read(struct file *fp, char *buf, size_t count, loff_t *ppos)
{
copy_to_user(userbuffer, kernelbuffer, count);
// this is the api used to send data from kernel buffer to user buffer
}
以上是内核代码,我想从B.c读取Interrupttime(A.c),我想在B.c程序api中复制中断时间,然后将其发送到用户空间。那么有人请帮我看看B.c程序的数据吗?