Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_exit.c « h8300hms « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17d1538cb950854346b75058b751244bb8c6225c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* FIXME: which one? */

#include <_ansi.h>

/* `sleep' is passed an argument in r0 that indicates the reason
   the program is exiting.  The format of r0 is defined in devo/include/wait.h.
*/

void
_DEFUN (_exit,(rc),
     int rc)
{
  short rc2 = rc << 8;
  asm("mov.w %0,r0\n\tsleep" : : "r" (rc2) : "r0");
}

void
_DEFUN (__exit,(rc),
     int rc)
{
  short rc2 = rc << 8;
  asm("mov.w %0,r0\n\tsleep" : : "r" (rc2) : "r0");
}