Changeset 640 for trunk/libs
- Timestamp:
- Oct 1, 2019, 1:19:00 PM (5 years ago)
- Location:
- trunk/libs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libs/libalmosmkh/almosmkh.c
r638 r640 289 289 290 290 ///////////////////////////////////////////////////// 291 int display_vmm( unsigned int cxy, unsigned int pid ) 291 int display_vmm( unsigned int cxy, 292 unsigned int pid, 293 unsigned int mapping ) 292 294 { 293 295 return hal_user_syscall( SYS_DISPLAY, 294 296 DISPLAY_VMM, 295 297 (reg_t)cxy, 296 (reg_t)pid, 0 ); 298 (reg_t)pid, 299 (reg_t)mapping ); 297 300 } 298 301 … … 500 503 printf(" / pid = "); 501 504 unsigned int pid = get_uint32(); 502 display_vmm( cxy , pid ); 505 printf(" / mapping = "); 506 unsigned int map = get_uint32(); 507 display_vmm( cxy , pid , map ); 503 508 } 504 509 // force the calling process to exit -
trunk/libs/libalmosmkh/almosmkh.h
r637 r640 165 165 * @ cxy : [in] target cluster identifier. 166 166 * @ pid : [in] process identifier. 167 * @ mapping : [in] detailed mapping if non zero. 167 168 * @ return 0 if success / return -1 if illegal argument. 168 169 **************************************************************************************/ 169 int display_vmm(unsigned int cxy, unsigned int pid ); 170 int display_vmm( unsigned int cxy, 171 unsigned int pid, 172 unsigned int mapping ); 170 173 171 174 /*************************************************************************************** -
trunk/libs/libpthread/pthread.h
r637 r640 214 214 /********************************************************************************************* 215 215 * This function synchronizes participating threads at the barrier referenced by <barrier>. 216 * The calling is blocked until the required number of threads have called the function217 * pthread_barrier_wait() specifying the barrier.216 * The calling thread is blocked until the required number of threads have called the 217 * function pthread_barrier_wait() specifying the barrier. 218 218 * When the required number of threads have called pthread_barrier_wait(), the constant 219 219 * PTHREAD_BARRIER_SERIAL_THREAD is returned to one unspecified thread and zero is returned
Note: See TracChangeset
for help on using the changeset viewer.