1COPY_REGSET_FROM_USE(9) Machine State COPY_REGSET_FROM_USE(9)
2
3
4
6 copy_regset_from_user - store into thread´s user_regset data from user
7 memory
8
10 int copy_regset_from_user(struct task_struct * target,
11 const struct user_regset_view * view,
12 unsigned int setno, unsigned int offset,
13 unsigned int size, const void __user * data);
14
16 target
17 thread to be examined
18
19 view
20
21 struct user_regset_view describing user thread machine state
22
23 setno
24 index in view->regsets
25
26 offset
27 offset into the regset data, in bytes
28
29 size
30 amount of data to copy, in bytes
31
32 data
33 user-mode pointer to copy from
34
35
36
37Kernel Hackers Manual 2.6. June 2019 COPY_REGSET_FROM_USE(9)