source: trunk/libs/newlib/src/libgloss/spu/open.c @ 450

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

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

File size: 3.4 KB
Line 
1/*
2(C) Copyright IBM Corp. 2005, 2006
3
4All rights reserved.
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8
9    * Redistributions of source code must retain the above copyright notice,
10this list of conditions and the following disclaimer.
11    * Redistributions in binary form must reproduce the above copyright
12notice, this list of conditions and the following disclaimer in the
13documentation and/or other materials provided with the distribution.
14    * Neither the name of IBM nor the names of its contributors may be
15used to endorse or promote products derived from this software without
16specific prior written permission.
17
18THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28POSSIBILITY OF SUCH DAMAGE.
29
30Author: Andreas Neukoetter (ti95neuk@de.ibm.com)
31*/
32
33#include <stdarg.h>
34#include <fcntl.h>
35#include "jsre.h"
36
37#define JSRE_O_RDONLY 0
38#define JSRE_O_WRONLY 1
39#define JSRE_O_RDWR 2
40
41#define JSRE_O_CREAT 64
42#define JSRE_O_EXCL 128
43#define JSRE_O_NOCTTY 256
44#define JSRE_O_TRUNC 512
45#define JSRE_O_APPEND 1024
46#define JSRE_O_NDELAY 2048
47#define JSRE_O_SYNC 4096
48#define JSRE_O_ASYNC 8192
49
50typedef struct
51{
52        unsigned int pathname;
53        unsigned int pad0[3];
54        unsigned int flags;
55        unsigned int pad1[3];
56        unsigned int mode;
57        unsigned int pad2[3];
58} syscall_open_t;
59
60int
61open (const char *filename, int flags, ...)
62{
63        syscall_open_t sys;
64        va_list ap;
65
66        sys.pathname = ( unsigned int )filename;
67
68        sys.flags = 0;
69
70        sys.flags |= ( ( flags & O_CREAT ) ? JSRE_O_CREAT : 0 );
71        sys.flags |= ( ( flags & O_EXCL ) ? JSRE_O_EXCL : 0 );
72        sys.flags |= ( ( flags & O_NOCTTY ) ? JSRE_O_NOCTTY : 0 );
73        sys.flags |= ( ( flags & O_TRUNC ) ? JSRE_O_TRUNC : 0 );
74        sys.flags |= ( ( flags & O_APPEND ) ? JSRE_O_APPEND : 0 );
75//      sys.flags |= ( ( flags & O_NOBLOCK ) ? JSRE_O_NOBLOCK : 0 );
76//      sys.flags |= ( ( flags & O_NDELAY ) ? JSRE_O_NDELAY : 0 );
77        sys.flags |= ( ( flags & O_SYNC ) ? JSRE_O_SYNC : 0 );
78//      sys.flags |= ( ( flags & O_NOFOLLOW ) ? JSRE_O_NOFOLLOW : 0 );
79//      sys.flags |= ( ( flags & O_DIRECTORY ) ? JSRE_O_DIRECTORY : 0 );
80//      sys.flags |= ( ( flags & O_DIRECT ) ? JSRE_O_DIRECT : 0 );
81//      sys.flags |= ( ( flags & O_ASYNC ) ? JSRE_O_ASYNC : 0 );
82//      sys.flags |= ( ( flags & O_LARGEFILE ) ? JSRE_O_LARGEFILE : 0 );
83
84
85        sys.flags |= ( ( flags & O_RDONLY ) ? JSRE_O_RDONLY : 0 );
86        sys.flags |= ( ( flags & O_WRONLY ) ? JSRE_O_WRONLY : 0 );
87        sys.flags |= ( ( flags & O_RDWR )  ? JSRE_O_RDWR  : 0 );
88
89        /* FIXME: we have to check/map all flags */
90
91        va_start (ap, flags);
92        sys.mode = va_arg (ap, int);
93        va_end (ap);
94
95        return __send_to_ppe (JSRE_POSIX1_SIGNALCODE, JSRE_OPEN, &sys);
96}
Note: See TracBrowser for help on using the repository browser.