Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将变量“register_val”(unsigned int)从内核模块的用户空间复制到地址“addr_user”(unsigned int *)。
为什么下面要复制的代码不起作用?
*addr_user = register_val;