[ad28599] | 1 | /*
|
---|
| 2 | * Copyright (c) 2011 Petr Koupy
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup libposix
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
| 35 | #ifndef POSIX_FCNTL_H_
|
---|
| 36 | #define POSIX_FCNTL_H_
|
---|
| 37 |
|
---|
[4ec6820] | 38 | #include "sys/types.h"
|
---|
[ad28599] | 39 | #include "libc/fcntl.h"
|
---|
| 40 |
|
---|
[4ec6820] | 41 | /* Mask for file access modes. */
|
---|
| 42 | #undef O_ACCMODE
|
---|
| 43 | #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
|
---|
| 44 |
|
---|
[ad28599] | 45 | /* fcntl commands */
|
---|
| 46 | #undef F_DUPFD
|
---|
[4ec6820] | 47 | #undef F_DUPFD_CLOEXEC
|
---|
[ad28599] | 48 | #undef F_GETFD
|
---|
| 49 | #undef F_SETFD
|
---|
| 50 | #undef F_GETFL
|
---|
| 51 | #undef F_SETFL
|
---|
| 52 | #undef F_GETOWN
|
---|
| 53 | #undef F_SETOWN
|
---|
[4ec6820] | 54 | #undef F_GETLK
|
---|
| 55 | #undef F_SETLK
|
---|
| 56 | #undef F_SETLKW
|
---|
[87ba48cb] | 57 | #define F_DUPFD 0 /* Duplicate file descriptor. */
|
---|
[4ec6820] | 58 | #define F_DUPFD_CLOEXEC 1 /* Same as F_DUPFD but with FD_CLOEXEC flag set. */
|
---|
[87ba48cb] | 59 | #define F_GETFD 2 /* Get file descriptor flags. */
|
---|
| 60 | #define F_SETFD 3 /* Set file descriptor flags. */
|
---|
| 61 | #define F_GETFL 4 /* Get file status and access flags. */
|
---|
| 62 | #define F_SETFL 5 /* Set file status flags. */
|
---|
[4ec6820] | 63 | #define F_GETOWN 6 /* Get socket owner. */
|
---|
| 64 | #define F_SETOWN 7 /* Set socket owner. */
|
---|
| 65 | #define F_GETLK 8 /* Get locking information. */
|
---|
| 66 | #define F_SETLK 9 /* Set locking information. */
|
---|
| 67 | #define F_SETLKW 10 /* Set locking information; wait if blocked. */
|
---|
[ad28599] | 68 |
|
---|
| 69 | /* File descriptor flags used with F_GETFD and F_SETFD. */
|
---|
| 70 | #undef FD_CLOEXEC
|
---|
[87ba48cb] | 71 | #define FD_CLOEXEC 1 /* Close on exec. */
|
---|
[ad28599] | 72 |
|
---|
| 73 | extern int posix_fcntl(int fd, int cmd, ...);
|
---|
| 74 |
|
---|
| 75 | #ifndef LIBPOSIX_INTERNAL
|
---|
| 76 | #define fcntl posix_fcntl
|
---|
| 77 | #endif
|
---|
| 78 |
|
---|
| 79 | #endif /* POSIX_FCNTL_H_ */
|
---|
| 80 |
|
---|
| 81 | /** @}
|
---|
| 82 | */
|
---|