13 lines
195 B
C
13 lines
195 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/ksys.h>
|
|
|
|
void abort()
|
|
{
|
|
ksys_thread_t t;
|
|
_ksys_thread_info(&t, -1);
|
|
fprintf(stderr, "\nAbort in %d\n", t.pid);
|
|
|
|
_exit(128);
|
|
}
|