source: asp3_tinet_ecnl_arm/trunk/musl-1.1.18/src/exit/abort.c@ 352

Last change on this file since 352 was 352, checked in by coas-nagasima, 6 years ago

arm向けASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 220 bytes
Line 
1#include <stdlib.h>
2#include <signal.h>
3#include "syscall.h"
4#include "pthread_impl.h"
5#include "atomic.h"
6
7_Noreturn void abort(void)
8{
9 raise(SIGABRT);
10 __block_all_sigs(0);
11 a_crash();
12 raise(SIGKILL);
13 _Exit(127);
14}
Note: See TracBrowser for help on using the repository browser.