Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #include <shell_api.h>
  2. #include <sys/ksys.h>
  3.  
  4. int shell_ping()
  5. {
  6.     __shell_init();
  7.     *__shell_shm = SHELL_PING;
  8.     _ksys_delay(10);
  9.     if(*__shell_shm==SHELL_OK){
  10.         return 1;
  11.     }
  12.     return 0;
  13. }