Changeset 435 for trunk/libs
- Timestamp:
- Feb 20, 2018, 5:32:17 PM (7 years ago)
- Location:
- trunk/libs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libs/stdio.c
r426 r435 292 292 ///////////// Non standard system calls //////////////////////////////////// 293 293 294 294 295 ////////////////////////// 295 296 int fg( unsigned int pid ) … … 345 346 } 346 347 347 /////////////////////////////////////// 348 int display_ process( unsigned int cxy )349 { 350 return hal_user_syscall( SYS_DISPLAY, 351 DISPLAY_ PROCESS,348 ///////////////////////////////////////////////// 349 int display_cluster_processes( unsigned int cxy ) 350 { 351 return hal_user_syscall( SYS_DISPLAY, 352 DISPLAY_CLUSTER_PROCESSES, 352 353 (reg_t)cxy, 0, 0 ); 353 354 } … … 365 366 return hal_user_syscall( SYS_DISPLAY, 366 367 DISPLAY_VFS, 0, 0, 0 ); 368 } 369 370 //////////////////////////////////////////////// 371 int display_txt_processes( unsigned int txt_id ) 372 { 373 return hal_user_syscall( SYS_DISPLAY, 374 DISPLAY_TXT_PROCESSES, 375 (reg_t)txt_id, 0, 0 ); 367 376 } 368 377 -
trunk/libs/stdio.h
r434 r435 347 347 int wait( int * status ); 348 348 349 349 350 /****************** Non standard (ALMOS_MKH specific) system calls **********************/ 350 351 … … 429 430 * @ return 0 if success / return -1 if illegal argument. 430 431 **************************************************************************************/ 431 int display_ process( unsigned int cxy );432 int display_cluster_processes( unsigned int cxy ); 432 433 433 434 /*************************************************************************************** … … 448 449 **************************************************************************************/ 449 450 int display_vfs(); 451 452 /*************************************************************************************** 453 * This debug function displays on the kernel terminal TXT0 454 * the list of processes attached to a given TXT channel. 455 * It can be called by any thread running in any cluster. 456 *************************************************************************************** 457 * @ return always 0. 458 **************************************************************************************/ 459 int display_txt_processes( unsigned int txt_id ); 450 460 451 461 /*****************************************************************************************
Note: See TracChangeset
for help on using the changeset viewer.