haiku/headers/private/kernel/util/syscall_args.h
Ingo Weinhold e50cf8765b * Moved the VM headers into subdirectory vm/.
* Renamed vm_cache.h/vm_address_space.h to VMCache.h/VMAddressSpace.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34449 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-12-02 18:05:10 +00:00

39 lines
687 B
C++

// syscall_args.h
#ifndef _SYSCALL_ARGS_H
#define _SYSCALL_ARGS_H
#include <kernel.h>
// Hack to be able to use the IS_USER_ADDRESS macro when compiling for R5.
#ifdef R5_MEMORY_LAYOUT
# undef KERNEL_BASE
# define KERNEL_BASE 0x0
#endif
// copy_ref_var_from_user
template<typename T>
inline
status_t
copy_ref_var_from_user(T *user, T &kernel)
{
if (!IS_USER_ADDRESS(user))
return B_BAD_ADDRESS;
return user_memcpy(&kernel, user, sizeof(T));
}
// copy_ref_var_to_user
template<typename T>
inline
status_t
copy_ref_var_to_user(T &kernel, T *user)
{
if (!IS_USER_ADDRESS(user))
return B_BAD_ADDRESS;
return user_memcpy(user, &kernel, sizeof(T));
}
#endif // _SYSCALL_ARGS_H