Changeset 479 for soft/giet_vm/giet_libs
- Timestamp:
- Jan 1, 2015, 8:02:02 PM (10 years ago)
- Location:
- soft/giet_vm/giet_libs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_libs/mwmr_channel.c
r468 r479 50 50 unsigned int lpid; 51 51 giet_proc_xyp( &x, &y, &lpid ); 52 giet_shr_printf("\n[MWMR DEBUG] Proc[%d,%d,%d] enters nb_mwmr_write()" 53 " : mwmr = %x / buffer = %x / items = %d\n", 54 x, y, lpid, (unsigned int)mwmr, (unsigned int)buffer, items ); 52 55 #endif 53 56 … … 132 135 unsigned int lpid; 133 136 giet_proc_xyp( &x, &y, &lpid ); 137 giet_shr_printf("\n[MWMR DEBUG] Proc[%d,%d,%d] enters nb_mwmr_read()" 138 " : mwmr = %x / buffer = %x / items = %d\n", 139 x, y, lpid, (unsigned int)mwmr, (unsigned int)buffer, items ); 134 140 #endif 135 141 … … 218 224 unsigned int lpid; 219 225 giet_proc_xyp( &x, &y, &lpid ); 226 giet_shr_printf("\n[MWMR DEBUG] Proc[%d,%d,%d] enters mwmr_write()" 227 " : mwmr = %x / buffer = %x / items = %d\n", 228 x, y, lpid, (unsigned int)mwmr, (unsigned int)buffer, items ); 220 229 #endif 221 230 … … 305 314 unsigned int lpid; 306 315 giet_proc_xyp( &x, &y, &lpid ); 316 giet_shr_printf("\n[MWMR DEBUG] Proc[%d,%d,%d] enters mwmr_read()" 317 " : mwmr = %x / buffer = %x / items = %d\n", 318 x, y, lpid, (unsigned int)mwmr, (unsigned int)buffer, items ); 307 319 #endif 308 320 -
soft/giet_vm/giet_libs/mwmr_channel.h
r461 r479 22 22 // 23 23 // Both the mwmr_read() and mwmr_write() functions are blocking functions. 24 // A private file_lock provides exclusive access to the MWMR channel.24 // A queuing lock provides exclusive access to the MWMR channel. 25 25 /////////////////////////////////////////////////////////////////////////////////// 26 26
Note: See TracChangeset
for help on using the changeset viewer.