/[rtmk]/rtmk/i386/tm-i386.h
ViewVC logotype

Diff of /rtmk/i386/tm-i386.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.1.1 by jrydberg, Fri Dec 7 02:06:17 2001 UTC revision 1.2 by jrydberg, Mon Dec 10 22:26:59 2001 UTC
# Line 272  extern void pmap_destroy (struct pmap *p Line 272  extern void pmap_destroy (struct pmap *p
272  extern void pmap_virtual_memory (vm_offset_t *vstartp, vm_offset_t *vendp);  extern void pmap_virtual_memory (vm_offset_t *vstartp, vm_offset_t *vendp);
273  #define PMAP_VIRTUAL_MEMORY(STARTP, ENDP) pmap_virtual_memory (STARTP, ENDP)  #define PMAP_VIRTUAL_MEMORY(STARTP, ENDP) pmap_virtual_memory (STARTP, ENDP)
274    
275    /* Copy memory from user address space into kernel address space.  */
276    
277    extern int copyin (void *dst, void *src, int count);
278    #define COPYIN(DST, SRC, COUNT) copyin (DST, SRC, COUNT)
279    
280    /* Copy memory from kernel address space into user address space.  */
281    
282    extern int copyout (void *dst, void *src, int count);
283    #define COPYOUT(DST, SRC, COUNT) copyout (DST, SRC, COUNT)
284    
285  #endif /* ASSEMBLER */  #endif /* ASSEMBLER */
286    
287  #endif /* tm-i386.h */  #endif /* tm-i386.h */

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26