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

sys.tex « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c3d8545279ee10830e84f4ed05621a4a97e5e44 (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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
@c                                           -*- Texinfo -*-
@node Syscalls
@chapter System Calls

@cindex linking the C library
The C subroutine library depends on a handful of subroutine calls for
operating system services.  If you use the C library on a system that
complies with the POSIX.1 standard (also known as IEEE 1003.1), most of
these subroutines are supplied with your operating system.

If some of these subroutines are not provided with your system---in
the extreme case, if you are developing software for a ``bare board''
system, without an OS---you will at least need to provide do-nothing
stubs (or subroutines with minimal functionality) to allow your
programs to link with the subroutines in @code{libc.a}.

@menu
* Stubs::		Definitions for OS interface
* Reentrant Syscalls::	Reentrant covers for OS subroutines
@end menu

@node Stubs
@section Definitions for OS interface
@cindex stubs

@cindex subroutines for OS interface
@cindex OS interface subroutines
This is the complete set of system definitions (primarily subroutines)
required; the examples shown implement the minimal functionality
required to allow @code{libc} to link, and fail gracefully where OS
services are not available.  

Graceful failure is permitted by returning an error code.  A minor
complication arises here: the C library must be compatible with
development environments that supply fully functional versions of these
subroutines.  Such environments usually return error codes in a global
@code{errno}.  However, the Red Hat newlib C library provides a @emph{macro}
definition for @code{errno} in the header file @file{errno.h}, as part
of its support for reentrant routines (@pxref{Reentrancy,,Reentrancy}).

@cindex @code{errno} global vs macro
The bridge between these two interpretations of @code{errno} is
straightforward: the C library routines with OS interface calls
capture the @code{errno} values returned globally, and record them in
the appropriate field of the reentrancy structure (so that you can query
them using the @code{errno} macro from @file{errno.h}).

This mechanism becomes visible when you write stub routines for OS
interfaces.   You must include @file{errno.h}, then disable the macro,
like this:

@example
#include <errno.h>
#undef errno
extern int errno;
@end example

@noindent
The examples in this chapter include this treatment of @code{errno}.

@ftable @code
@item _exit
Exit a program without cleaning up files.  If your system doesn't
provide this, it is best to avoid linking with subroutines that require
it (@code{exit}, @code{system}).

@item close
Close a file.  Minimal implementation:

@example
int close(int file) @{
  return -1;
@}
@end example

@item environ
A pointer to a list of environment variables and their values.  For a
minimal environment, this empty list is adequate:

@example
char *__env[1] = @{ 0 @};
char **environ = __env;
@end example

@item execve
Transfer control to a new process.  Minimal implementation (for a system
without processes):

@example
#include <errno.h>
#undef errno
extern int errno;
int execve(char *name, char **argv, char **env) @{
  errno = ENOMEM;
  return -1;
@}
@end example

@item fork
Create a new process.  Minimal implementation (for a system without processes):

@example
#include <errno.h>
#undef errno
extern int errno;
int fork(void) @{
  errno = EAGAIN;
  return -1;
@}
@end example

@item fstat
Status of an open file.  For consistency with other minimal
implementations in these examples, all files are regarded as character
special devices.  The @file{sys/stat.h} header file required is
distributed in the @file{include} subdirectory for this C library.

@example
#include <sys/stat.h>
int fstat(int file, struct stat *st) @{
  st->st_mode = S_IFCHR;
  return 0;
@}
@end example

@item getpid
Process-ID; this is sometimes used to generate strings unlikely to
conflict with other processes.  Minimal implementation, for a system
without processes:

@example
int getpid(void) @{
  return 1;
@}
@end example

@item isatty
Query whether output stream is a terminal.   For consistency with the
other minimal implementations, which only support output to
@code{stdout}, this minimal implementation is suggested:

@example
int isatty(int file) @{
  return 1;
@}
@end example

@item kill
Send a signal.  Minimal implementation:

@example
#include <errno.h>
#undef errno
extern int errno;
int kill(int pid, int sig) @{
  errno = EINVAL;
  return -1;
@}
@end example

@item link
Establish a new name for an existing file.  Minimal implementation:

@example
#include <errno.h>
#undef errno
extern int errno;
int link(char *old, char *new) @{
  errno = EMLINK;
  return -1;
@}
@end example

@item lseek
Set position in a file.  Minimal implementation:

@example
int lseek(int file, int ptr, int dir) @{
  return 0;
@}
@end example

@item open
Open a file.  Minimal implementation:

@example
int open(const char *name, int flags, int mode) @{
  return -1;
@}
@end example

@item read
Read from a file.  Minimal implementation:

@example
int read(int file, char *ptr, int len) @{
  return 0;
@}
@end example

@item sbrk
Increase program data space.  As @code{malloc} and related functions
depend on this, it is useful to have a working implementation.  The
following suffices for a standalone system; it exploits the symbol
@code{_end} automatically defined by the GNU linker.

@example
@group
caddr_t sbrk(int incr) @{
  extern char _end;		/* @r{Defined by the linker} */
  static char *heap_end;
  char *prev_heap_end;
 
  if (heap_end == 0) @{
    heap_end = &_end;
  @}
  prev_heap_end = heap_end;
  if (heap_end + incr > stack_ptr) @{
    write (1, "Heap and stack collision\n", 25);
    abort ();
  @}

  heap_end += incr;
  return (caddr_t) prev_heap_end;
@}
@end group
@end example

@item stat
Status of a file (by name).  Minimal implementation:

@example
int stat(char *file, struct stat *st) @{
  st->st_mode = S_IFCHR;
  return 0;
@}
@end example

@item times
Timing information for current process.  Minimal implementation:

@example
int times(struct tms *buf) @{
  return -1;
@}
@end example

@item unlink
Remove a file's directory entry.  Minimal implementation:

@example
#include <errno.h>
#undef errno
extern int errno;
int unlink(char *name) @{
  errno = ENOENT;
  return -1; 
@}
@end example

@item wait
Wait for a child process.  Minimal implementation:
@example
#include <errno.h>
#undef errno
extern int errno;
int wait(int *status) @{
  errno = ECHILD;
  return -1;
@}
@end example

@item write
Write to a file.  @file{libc} subroutines will use this
system routine for output to all files, @emph{including}
@code{stdout}---so if you need to generate any output, for example to a
serial port for debugging, you should make your minimal @code{write}
capable of doing this.  The following minimal implementation is an
incomplete example; it relies on a @code{outbyte} subroutine (not
shown; typically, you must write this in assembler from examples
provided by your hardware manufacturer) to actually perform the output.

@example
@group
int write(int file, char *ptr, int len) @{
  int todo;

  for (todo = 0; todo < len; todo++) @{
    outbyte (*ptr++);
  @}
  return len;
@}
@end group
@end example

@end ftable

@page
@node Reentrant Syscalls
@section Reentrant covers for OS subroutines

Since the system subroutines are used by other library routines that
require reentrancy, @file{libc.a} provides cover routines (for example,
the reentrant version of @code{fork} is @code{_fork_r}).  These cover
routines are consistent with the other reentrant subroutines in this
library, and achieve reentrancy by using a reserved global data block
(@pxref{Reentrancy,,Reentrancy}).

@menu
* Function _close_r::	Reentrant version of close
* Function _execve_r::	Reentrant version of execve
* Function _fork_r::	Reentrant version of fork
@ifset STDIO64
* Function _fstat64_r::	Reentrant version of fstat64
@end ifset
* Function _fstat_r::	Reentrant version of fstat
* Function _getpid_r::	Reentrant version of getpid
* Function _kill_r::	Reentrant version of kill
* Function _link_r::	Reentrant version of link
@ifset STDIO64
* Function _lseek64_r::	Reentrant version of lseek64
@end ifset
* Function _lseek_r::	Reentrant version of lseek
@ifset STDIO64
* Function _open64_r::	Reentrant version of open64
@end ifset
* Function _open_r::	Reentrant version of open
* Function _read_r::	Reentrant version of read
* Function _sbrk_r::	Reentrant version of sbrk
@ifset STDIO64
* Function _stat64_r::	Reentrant version of stat64
@end ifset
* Function _stat_r::	Reentrant version of stat
* Function _times_r::	Reentrant version of times
* Function _unlink_r::	Reentrant version of unlink
* Function _wait_r::	Reentrant version of wait
* Function _write_r::	Reentrant version of write
@end menu

@lowersections
@page
@include reent/closer.def

@page
@include reent/execr.def

@ifset STDIO64
@page
@include reent/fstat64r.def
@end ifset

@page
@include reent/fstatr.def

@page
@include reent/linkr.def

@ifset STDIO64
@page
@include reent/lseek64r.def
@end ifset

@page
@include reent/lseekr.def

@ifset STDIO64
@page
@include reent/open64r.def
@end ifset

@page
@include reent/openr.def

@page
@include reent/readr.def

@page
@include reent/sbrkr.def

@page
@include reent/signalr.def

@ifset STDIO64
@page
@include reent/stat64r.def
@end ifset

@page
@include reent/statr.def

@page
@include reent/timesr.def

@page
@include reent/unlinkr.def

@page
@include reent/writer.def
@raisesections