42 lines
515 B
C++
42 lines
515 B
C++
|
#include <stdio.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
#include "osal.h"
|
||
|
|
||
|
#include "syscalls_cpp.hpp"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void _exit(int status){
|
||
|
(void) status;
|
||
|
osalSysHalt("Unrealized");
|
||
|
while(TRUE){}
|
||
|
}
|
||
|
|
||
|
pid_t _getpid(void){
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
#undef errno
|
||
|
extern int errno;
|
||
|
int _kill(int pid, int sig) {
|
||
|
(void)pid;
|
||
|
(void)sig;
|
||
|
errno = EINVAL;
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
void _open_r(void){
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
void __cxa_pure_virtual() {
|
||
|
osalSysHalt("Pure virtual function call.");
|
||
|
}
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|