Subversion Repositories HelenOS-historic

Rev

Rev 1288 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1288 Rev 1293
Line 35... Line 35...
35
extern char memcpy_from_uspace_failover_address;
35
extern char memcpy_from_uspace_failover_address;
36
 
36
 
37
/** Label within memcpy_to_uspace() that contains return -1. */
37
/** Label within memcpy_to_uspace() that contains return -1. */
38
extern char memcpy_to_uspace_failover_address;
38
extern char memcpy_to_uspace_failover_address;
39
 
39
 
40
extern int copy_from_uspace(void *dst, void *uspace_src, size_t size);
40
extern int copy_from_uspace(void *dst, const void *uspace_src, size_t size);
41
extern int copy_to_uspace(void *dst_uspace, void *src, size_t size);
41
extern int copy_to_uspace(void *dst_uspace, const void *src, size_t size);
42
 
42
 
43
/*
43
/*
44
 * This interface must be implemented by each architecture.
44
 * This interface must be implemented by each architecture.
45
 */
45
 */
46
extern int memcpy_from_uspace(void *dst, void *uspace_src, size_t size);
46
extern int memcpy_from_uspace(void *dst, const void *uspace_src, size_t size);
47
extern int memcpy_to_uspace(void *uspace_dst, void *src, size_t size);
47
extern int memcpy_to_uspace(void *uspace_dst, const void *src, size_t size);
48
 
48
 
49
#endif
49
#endif