source: trunk/libs/newlib/src/newlib/libc/machine/spu/stdio.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 2.3 KB
Line 
1/*
2Copyright (C) 2007 Sony Computer Entertainment Inc.
3Copyright 2007 Sony Corp.
4
5All rights reserved.
6
7Redistribution and use in source and binary forms, with or without
8modification, are permitted provided that the following conditions are met:
9
10  * Redistributions of source code must retain the above copyright notice,
11    this list of conditions and the following disclaimer.
12  * Redistributions in binary form must reproduce the above copyright
13    notice, this list of conditions and the following disclaimer in the
14    documentation and/or other materials provided with the distribution.
15  * Neither the names of the copyright holders nor the names of their
16    contributors may be used to endorse or promote products derived from this
17    software without specific prior written permission.
18
19THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29POSSIBILITY OF SUCH DAMAGE.
30
31Author: Kazunori Asayama <asayama@sm.sony.co.jp>
32*/
33
34#include <stdio.h>
35
36#include "c99ppe.h"
37
38
39static FILE __fp[SPE_FOPEN_MAX];
40
41FILE *
42__sfp (struct _reent *d)
43{
44  int i;
45  for (i = 0; i < SPE_FOPEN_MAX; i++) {
46    if (!__fp[i]._fp) {
47      return &__fp[i];
48    }
49  }
50  d->_errno = EMFILE;
51  return NULL;
52}
53
54static void
55__cleanup (struct _reent *s)
56{
57  int i;
58  for (i = 0; i < SPE_FOPEN_MAX; i++) {
59    if (__fp[i]._fp) {
60      fclose(&__fp[i]);
61    }
62  }
63}
64
65void
66__sinit (struct _reent *s)
67{
68  s->__cleanup = __cleanup;
69  s->__sdidinit = 1;
70
71  s->_stdin = &s->__sf[0];
72  s->_stdin->_fp = SPE_STDIN;
73
74  s->_stdout = &s->__sf[1];
75  s->_stdout->_fp = SPE_STDOUT;
76
77  s->_stderr = &s->__sf[2];
78  s->_stderr->_fp = SPE_STDERR;
79}
80
81void
82__check_init (void)
83{
84    CHECK_INIT(_REENT);
85}
Note: See TracBrowser for help on using the repository browser.