Changeset 633 for trunk/kernel/libk/user_dir.c
- Timestamp:
- May 28, 2019, 6:10:15 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/libk/user_dir.c
r629 r633 386 386 { 387 387 thread_t * this; // local pointer on calling thread 388 process_t * process; // local pointer on calling process389 388 cluster_t * cluster; // local pointer on local cluster 390 389 intptr_t ident; // user pointer on dirent array … … 401 400 uint32_t responses; // response counter 402 401 403 // get pointers on calling process & thread404 402 this = CURRENT_THREAD; 405 process = this->process;406 403 cluster = LOCAL_CLUSTER; 407 404 … … 415 412 if( cycle > DEBUG_USER_DIR ) 416 413 printk("\n[%s] thread[%x,%x] enter for user_dir (%x,%x) and process %x / cycle %d\n", 417 __FUNCTION__, process->pid, this->trdid, local_cxy, dir, ref_pid, cycle );414 __FUNCTION__, this->process->pid, this->trdid, local_cxy, dir, ref_pid, cycle ); 418 415 #endif 419 416 … … 503 500 if( cycle > DEBUG_USER_DIR ) 504 501 printk("\n[%s] thread[%x,%x] deleted user_dir (%x,%x) / cycle %d\n", 505 __FUNCTION__, process->pid, this->trdid, local_cxy, dir, cycle );502 __FUNCTION__, this->process->pid, this->trdid, local_cxy, dir, cycle ); 506 503 #endif 507 504
Note: See TracChangeset
for help on using the changeset viewer.