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

syscalls.c « d10v « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11192074a75a72b32aad0b78fa6e2bac30d46c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/* syscalls.c - non-trap system calls for D10V
 *
 * This file contains system calls that cannot be implemented with
 * a simple "trap 15" instruction.  The ones that can are in trap.S.
 */

#include <_ansi.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#undef	errno

void _exit (int n);	/* in trap.S */

extern int _write (int fd, const void *ptr, size_t len);

int errno;

register char *stack_ptr asm ("sp");

caddr_t
_sbrk (int incr)
{
  extern char end;		/* Defined by the linker */
  static char *heap_end;
  char *prev_heap_end;
  char *sp = (char *)stack_ptr;

  if (heap_end == 0)
    {
      heap_end = (char *)((((unsigned short) &end) + 7) & ~7);
    }
  prev_heap_end = heap_end;
  if (heap_end + incr > sp)
    {
      _write (2, "Heap and stack collision\n", sizeof ("Heap and stack collision\n")-1);
      abort ();
    }
  heap_end += incr;
  if ((unsigned short)heap_end > 0xbfff
      || (heap_end < prev_heap_end && incr > 0)
      || (heap_end < (char *)((((unsigned short) &end) + 7) & ~7)))
    {
      _write (2, "Too much memory was allocated\n", sizeof ("Too much memory was allocated\n")-1);
      abort ();
    }

  return (caddr_t) prev_heap_end;
}

int
_fstat (int file,
	struct stat *st)
{
  st->st_mode = S_IFCHR;
  return 0;
}

int
_unlink ()
{
  errno = ENOSYS;
  return -1;
}

int
isatty (int fd)
{
  return 1;
}

void
_raise ()
{
}

/* If this library is compiled with -mint32, provide conversion functions for
   the system call traps.  */

#if __INT__==32
extern short _read16 (short fd, void *ptr, short len);
int
_read (int fd, void *ptr, size_t len)
{
  return _read16 ((short)fd, ptr, (short)len);
}

extern short _write16 (short fd, const void *ptr, short len);
int
_write (int fd, const void *ptr, size_t len)
{
  return _write16 ((short)fd, ptr, (short)len);
}

extern short _lseek16 (short fd, long offset, short whence);
int
_lseek (int fd, off_t offset, int whence)
{
  return _lseek16 ((short)fd, offset, (short)whence);
}

extern short _close16 (short fd);
int
_close (int fd)
{
  return _close16 ((short)fd);
}

extern short _open16 (const char *name, short flags, short mode);
int
_open (const char *name, int flags, mode_t mode)
{
  return _open16 (name, (short)flags, (short)mode);
}

extern short _creat16 (const char *name, mode_t mode);
int
_creat (const char *name, mode_t mode)
{
  return _creat16 (name, mode);
}

extern void _exit16 (short status);
void
_exit (int status)
{
  _exit16 ((short)status);
}

extern short _stat16 (const char *name, struct stat *stat_pkt);
int
_stat (const char *name, struct stat *stat_pkt)
{
  return _stat16 (name, stat_pkt);
}

extern short _chmod16 (const char *name, short mode);
int
_chmod (const char *name, mode_t mode)
{
  return _chmod16 (name, (short)mode);
}

extern short _chown16 (const char *name, short uid, short gid);
int
_chown (const char *name, uid_t uid, gid_t gid)
{
  return _chown16 (name, (short)uid, (short)gid);
}

extern short _fork16 (void);
int
_fork (void)
{
  return _fork16 ();
}

extern short _wait16 (short *status);
int
_wait (int *status)
{
  if (status)
    {
      short status16;
      short ret = _wait16 (&status16);
      if (ret >= 0)
	*status = status16;
      return ret;
    }
  else
    return _wait16 ((short *)0);
}

extern short _execve16 (const char *filename, const char *argv [], const char *envp[]);
int
_execve (const char *filename, const char *argv [], const char *envp[])
{
  return _execve16 (filename, argv, envp);
}

extern short _execv16 (const char *filename, const char *argv []);
int
_execv (const char *filename, const char *argv [])
{
  return _execv16 (filename, argv);
}

extern short _pipe16 (short fds[]);
int
_pipe (int fds[])
{
  short fds16[2];
  short ret = _pipe16 (fds16);
  if (ret >= 0)
    {
      fds[0] = fds16[0];
      fds[1] = fds16[1];
    }

  return ret;
}

extern short _getpid16 (void);
int
_getpid (void)
{
  return _getpid16 ();
}

extern short _kill16 (short pid, short sig);
int
_kill (int pid, int sig)
{
  return _kill16 ((short)pid, (short)sig);
}
#endif