source: mainline/uspace/lib/posix/unistd.h@ 221afc9e

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 221afc9e was 221afc9e, checked in by Petr Koupy <petr.koupy@…>, 14 years ago

Redefinitions of some libc functions (mainly return value corrections).

  • Property mode set to 100644
File size: 4.4 KB
RevLine 
[a16210b5]1/*
2 * Copyright (c) 2011 Jiri Zarevucky
[4f4b4e7]3 * Copyright (c) 2011 Petr Koupy
[a16210b5]4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, 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 * - The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
[4f4b4e7]29
30/** @addtogroup libposix
31 * @{
32 */
33/** @file
34 */
35
[a16210b5]36#ifndef POSIX_UNISTD_H_
37#define POSIX_UNISTD_H_
38
39#include "libc/unistd.h"
[59f799b]40#include "sys/types.h"
[a16210b5]41
[4f4b4e7]42/* Process Termination */
43#define _exit exit
[a16210b5]44
[4f4b4e7]45/* Option Arguments */
[a16210b5]46extern char *optarg;
47extern int optind, opterr, optopt;
48extern int getopt(int, char * const [], const char *);
49
[244d6fd]50/* Environment */
[b4d6252]51extern char **posix_environ;
52
[221afc9e]53/* Login Information */
[244d6fd]54extern char *posix_getlogin(void);
55extern int posix_getlogin_r(char *name, size_t namesize);
56
[4f4b4e7]57/* Identifying Terminals */
58extern int posix_isatty(int fd);
[a16210b5]59
[221afc9e]60/* Working Directory */
61extern char *posix_getcwd(char *buf, size_t size);
62
[72ec8cc]63/* Query Memory Parameters */
64extern int posix_getpagesize(void);
65
[4f4b4e7]66/* Process Identification */
[823a929]67extern posix_pid_t posix_getpid(void);
[59f799b]68extern posix_uid_t posix_getuid(void);
69extern posix_gid_t posix_getgid(void);
[a16210b5]70
[221afc9e]71/* File Input/Output */
72extern ssize_t posix_read(int fildes, void *buf, size_t nbyte);
73
74/* Deleting Files */
75extern int posix_unlink(const char *path);
76
[4f4b4e7]77/* Standard Streams */
78#undef STDIN_FILENO
[a16210b5]79#define STDIN_FILENO (fileno(stdin))
[4f4b4e7]80#undef STDOUT_FILENO
[a16210b5]81#define STDOUT_FILENO (fileno(stdout))
[4f4b4e7]82#undef STDERR_FILENO
[a16210b5]83#define STDERR_FILENO (fileno(stderr))
84
[b08ef1fd]85/* File Accessibility */
86#undef F_OK
87#undef X_OK
88#undef W_OK
89#undef R_OK
90#define F_OK 0 /* Test for existence. */
91#define X_OK 1 /* Test for execute permission. */
92#define W_OK 2 /* Test for write permission. */
93#define R_OK 4 /* Test for read permission. */
94extern int posix_access(const char *path, int amode);
95
[59f799b]96/* System Parameters */
97enum {
98 _SC_PHYS_PAGES,
99 _SC_AVPHYS_PAGES,
100 _SC_PAGESIZE,
101 _SC_CLK_TCK
102};
103extern long posix_sysconf(int name);
104
[72ec8cc]105/* Path Configuration Parameters */
106enum {
107 _PC_2_SYMLINKS,
108 _PC_ALLOC_SIZE_MIN,
109 _PC_ASYNC_IO,
110 _PC_CHOWN_RESTRICTED,
111 _PC_FILESIZEBITS,
112 _PC_LINK_MAX,
113 _PC_MAX_CANON,
114 _PC_MAX_INPUT,
115 _PC_NAME_MAX,
116 _PC_NO_TRUNC,
117 _PC_PATH_MAX,
118 _PC_PIPE_BUF,
119 _PC_PRIO_IO,
120 _PC_REC_INCR_XFER_SIZE,
121 _PC_REC_MIN_XFER_SIZE,
122 _PC_REC_XFER_ALIGN,
123 _PC_SYMLINK_MAX,
124 _PC_SYNC_IO,
125 _PC_VDISABLE
126};
[823a929]127extern long posix_pathconf(const char *path, int name);
128
129/* Creating a Process */
130extern posix_pid_t posix_fork(void);
131
132/* Executing a File */
133extern int posix_execv(const char *path, char *const argv[]);
134extern int posix_execvp(const char *file, char *const argv[]);
135
136/* Creating a Pipe */
137extern int posix_pipe(int fildes[2]);
[72ec8cc]138
[491e1ee]139#ifndef LIBPOSIX_INTERNAL
[b4d6252]140 #define environ posix_environ
[221afc9e]141
[244d6fd]142 #define getlogin posix_getlogin
143 #define getlogin_r posix_getlogin_r
[b4d6252]144
[221afc9e]145 #define getcwd posix_getcwd
146
[4f4b4e7]147 #define isatty posix_isatty
[b08ef1fd]148
[72ec8cc]149 #undef getpagesize
150 #define getpagesize posix_getpagesize
151
[823a929]152 #define getpid posix_getpid
[59f799b]153 #define getuid posix_getuid
154 #define getgid posix_getgid
155
[221afc9e]156 #define read posix_read
157
158 #define unlink posix_unlink
159
[b08ef1fd]160 #define access posix_access
[59f799b]161
162 #define sysconf posix_sysconf
[823a929]163
164 #define pathconf posix_pathconf
165
166 #define fork posix_fork
167
168 #define execv posix_execv
169 #define execvp posix_execvp
170
171 #define pipe posix_pipe
[4f4b4e7]172#endif
173
[a16210b5]174#endif /* POSIX_UNISTD_H_ */
175
[4f4b4e7]176/** @}
177 */
Note: See TracBrowser for help on using the repository browser.