Stima V4 Slave RAIN  4.2
syscalls.c
Go to the documentation of this file.
1 #include <stdio.h>
2 #include <stdarg.h>
3 #include <errno.h>
4 #include <sys/types.h>
5 #include <sys/stat.h>
6 
7 #undef errno
8 extern int errno;
9 
10 extern caddr_t _end;
11 extern caddr_t _max_heap;
12 
13 extern int link(char *old, char *new);
14 extern int _close(int file);
15 extern int _fstat(int file, struct stat *st);
16 extern int _isatty(int file);
17 extern int _lseek(int file, int ptr, int dir);
18 extern void _exit(int status);
19 extern void _kill(int pid, int sig);
20 extern int _getpid(void);
21 
22 int _write(int file, char *ptr, int len)
23 {
24  int i;
25 
26  if(file == 1)
27  {
28  for(i = 0; i < len; i++)
29  fputc(ptr[i], stdout);
30  }
31  else if(file == 2)
32  {
33  for(i = 0; i < len; i++)
34  fputc(ptr[i], stderr);
35  }
36 
37  return len;
38 }
39 
40 int _read(int file, char *ptr, int len)
41 {
42  return 0;
43 }
44 
45 extern int link(char *old, char *new)
46 {
47  return -1;
48 }
49 
50 extern int _close(int file)
51 {
52  return -1;
53 }
54 
55 extern int _fstat(int file, struct stat *st)
56 {
57  st->st_mode = S_IFCHR;
58  return 0;
59 }
60 
61 extern int _isatty(int file)
62 {
63  return 1;
64 }
65 
66 extern int _lseek(int file, int ptr, int dir)
67 {
68  return 0;
69 }
70 
71 extern void _exit(int status)
72 {
73  while(1);
74 }
75 
76 extern void _kill(int pid, int sig)
77 {
78  return;
79 }
80 
81 extern int _getpid(void)
82 {
83  return -1;
84 }
85 
87 {
88  return 1;
89 }
int_t fputc(int_t c, FILE *stream)
Put char to file output.
Definition: debug.cpp:37
void _kill(int pid, int sig)
Definition: syscalls.c:76
caddr_t _max_heap
int _fstat(int file, struct stat *st)
Definition: syscalls.c:55
int _read(int file, char *ptr, int len)
Definition: syscalls.c:40
int _close(int file)
Definition: syscalls.c:50
int link(char *old, char *new)
Definition: syscalls.c:45
int _lseek(int file, int ptr, int dir)
Definition: syscalls.c:66
int _getpid(void)
Definition: syscalls.c:81
int _write(int file, char *ptr, int len)
Definition: syscalls.c:22
void _exit(int status)
Definition: syscalls.c:71
int _isatty(int file)
Definition: syscalls.c:61
int AllowPLLInitByStartup(void)
Definition: syscalls.c:86
int errno
caddr_t _end