Changes between Version 3 and Version 4 of kernel_syscalls


Ignore:
Timestamp:
Oct 6, 2014, 7:18:01 PM (10 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • kernel_syscalls

    v3 v4  
    3434
    3535 === unsigned int _get_vobj_ptr( char* vspace_name,  char* vobj_name,  mapping_vobj_t**  pvobj ) ===
    36 This function returns in the res_vobj argument a pointer on a vobj identified by the (vspace_name / vobj_name ) couple. Returns 0 if success, >0 if not found
     36This function returns in the res_vobj argument a pointer on a vobj identified by the (vspace_name / vobj_name ) couple.
     37Returns 0 if success, >0 if not found
    3738
     39 === unsigned int _vobj_get_vbase( char* vspace_name,  char* vobj_name,  unsigned int* vobj_vbase ) ===
     40This function writes in vobj_base the virtual base address of a vobj  identified by the (vspace_name / vobj_name ) couple.
     41Returns 0 if success, >0 if not found
    3842
    39 
    40 /////////////////////////////////////////////////////////////////////////////
    41 // This function writes in vobj_vbase the virtual base address of a vobj
    42 // identified by the (vspace_name / vobj_name ) couple.
    43 // returns 0 if success, >0 if not found
    44 /////////////////////////////////////////////////////////////////////////////
    45 unsigned int _vobj_get_vbase( char*         vspace_name,
    46                               char*         vobj_name,
    47                               unsigned int* vobj_vbase );
    48 
    49 /////////////////////////////////////////////////////////////////////////////
    50 // This function writes in vobj_length the length of a vobj
    51 // identified by the (vspace_name / vobj_name ) couple.
    52 // returns 0 if success, >0 if not found
    53 /////////////////////////////////////////////////////////////////////////////
    54 unsigned int _vobj_get_length( char*         vspace_name,
    55                                char*         vobj_name,
    56                                unsigned int* vobj_length );
     43 === unsigned int _vobj_get_length( char* vspace_name,  char* vobj_name,  unsigned int* vobj_length ) ===
     44This function writes in vobj_length the length of a vobj identified by the (vspace_name / vobj_name ) couple.
     45Returns 0 if success, >0 if not found
    5746
    5847 === unsigned int _get_xy_from_ptr( void* ptr,  unsigned int*  px,  unsigned int*  py ) ===