kolibrios/contrib/kolibri-libc/source/shell_api/shell_exit.c
turbocat 781f3f0fab kolibri-libc:
- Added shell apis(shell_api.h)
- Added functions  for working with a named shared memory area(ksys.h).
- Fixed itoa

git-svn-id: svn://kolibrios.org@8629 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-03-03 14:56:26 +00:00

11 lines
190 B
C

#include "shell.h"
#include "ksys.h"
void shell_exit()
{
if(__shell_is_init){
*__shell_shm = SHELL_EXIT;
SHELL_WAIT();
_ksys_shm_close(__shell_shm_name);
}
}