Changeset 614 for trunk/kernel/kern/rpc.h
- Timestamp:
- Jan 15, 2019, 1:59:32 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/rpc.h
r612 r614 229 229 * [4] The RPC_USER_DIR_CREATE allows a client thread to create an user_dir_t 230 230 * structure and the associated array of dirents in a remote cluster containing 231 * the target directory inode. It is called by the sys_opendir() function. 231 * the target directory <inode>. It creates an ANON vseg in the user reference 232 * process VMM identified by the <ref_xp>. This reference cluster cluster can be 233 * different from both the client and server clusters. 234 * It is called by the sys_opendir() function. 232 235 *********************************************************************************** 233 236 * @ cxy : server cluster identifier. 234 237 * @ inode : [in] local pointer on inode in server cluster. 238 * @ ref_xp : [in] extended pointer on user reference process descriptor. 235 239 * @ dir : [out] local pointer on created user_dir structure. 236 240 **********************************************************************************/ 237 241 void rpc_user_dir_create_client( cxy_t cxy, 238 242 struct vfs_inode_s * inode, 243 xptr_t ref_xp, 239 244 struct user_dir_s ** dir ); 240 245 … … 248 253 * @ cxy : server cluster identifier. 249 254 * @ dir : [in] local pointer on created user_dir structure. 255 * @ ref_xp : [in] extended pointer on user reference process descriptor. 250 256 **********************************************************************************/ 251 257 void rpc_user_dir_destroy_client( cxy_t cxy, 252 struct user_dir_s * dir ); 258 struct user_dir_s * dir, 259 xptr_t ref_xp ); 253 260 254 261 void rpc_user_dir_destroy_server( xptr_t xp );
Note: See TracChangeset
for help on using the changeset viewer.