Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. #include "shell.h"
  2. #include "ksys.h"
  3.  
  4. void shell_exit()
  5. {
  6.     if(__shell_is_init){
  7.         *__shell_shm = SHELL_EXIT;
  8.         SHELL_WAIT();
  9.         _ksys_shm_close(__shell_shm_name);
  10.     }
  11. }