Changeset 443 for trunk/libs/mini-libc/stdio.c
- Timestamp:
- May 16, 2018, 4:15:22 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libs/mini-libc/stdio.c
r439 r443 328 328 } 329 329 330 /////////////////////////////////// 331 int display_vmm( unsigned int pid ) 330 ////////////////////////////////// 331 int display_vmm( unsigned int cxy, 332 unsigned int pid ) 332 333 { 333 334 return hal_user_syscall( SYS_DISPLAY, 334 335 DISPLAY_VMM, 335 (reg_t)pid, 0, 0 ); 336 } 337 338 //////////////////////////////// 336 (reg_t)cxy, 337 (reg_t)pid, 0 ); 338 } 339 340 //////////////////////////////////// 339 341 int display_sched( unsigned int cxy, 340 342 unsigned int lid ) … … 383 385 } 384 386 385 /////////////////////////////// ///386 int trace( unsigned int operation,387 unsigned int pid,388 unsigned int trdid )387 /////////////////////////////// 388 int trace( unsigned int active, 389 unsigned int cxy, 390 unsigned int lid ) 389 391 { 390 392 return hal_user_syscall( SYS_TRACE, 391 (reg_t)pid, 392 (reg_t)trdid, 0, 0 ); 393 } 394 395 393 (reg_t)active, 394 (reg_t)cxy, 395 (reg_t)lid, 0 ); 396 } 397 398
Note: See TracChangeset
for help on using the changeset viewer.