mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 20:42:56 +01:00
committed by
Christian Helmuth
parent
cdf1b39c5e
commit
7c3f010cd6
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* \brief Shadow copy of asm/uaccess_32.h
|
||||
* \author Alexander Boettcher
|
||||
* \date 2022-02-17
|
||||
*/
|
||||
|
||||
#ifndef _ASM__UACCESS_32_H_
|
||||
#define _ASM__UACCESS_32_H_
|
||||
|
||||
unsigned long raw_copy_from_user(void *to, const void * from, unsigned long n);
|
||||
unsigned long raw_copy_to_user(void *to, const void *from, unsigned long n);
|
||||
|
||||
#endif /* _ASM__UACCESS_32_H_ */
|
||||
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* \brief Shadow copy of asm/uaccess_64.h
|
||||
* \author Alexander Boettcher
|
||||
* \date 2022-02-17
|
||||
*/
|
||||
|
||||
#ifndef _ASM__UACCESS_64_H_
|
||||
#define _ASM__UACCESS_64_H_
|
||||
|
||||
unsigned long raw_copy_from_user(void *to, const void * from, unsigned long n);
|
||||
unsigned long raw_copy_to_user(void *to, const void *from, unsigned long n);
|
||||
|
||||
#endif /* _ASM__UACCESS_64_H_ */
|
||||
Reference in New Issue
Block a user