2012-02-23 07:15:40 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2012.
|
|
|
|
|
|
|
|
This file is part of Sortix.
|
|
|
|
|
|
|
|
Sortix is free software: you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
Sortix is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
Sortix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
fcntl.h
|
|
|
|
Declares various constants related to opening files.
|
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SORTIX_FCNTL_H
|
|
|
|
#define SORTIX_FCNTL_H
|
|
|
|
|
|
|
|
#include <features.h>
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
#define O_RDONLY 1
|
|
|
|
#define O_WRONLY 2
|
|
|
|
#define O_RDWR 3
|
|
|
|
#define O_EXEC 4
|
|
|
|
#define O_SEARCH 5
|
|
|
|
#define O_LOWERFLAGS 0x7
|
|
|
|
#define O_APPEND (1<<3)
|
|
|
|
#define O_CLOEXEC (1<<4)
|
|
|
|
#define O_CREAT (1<<5)
|
|
|
|
#define O_DIRECTORY (1<<6)
|
|
|
|
#define O_EXCL (1<<7)
|
|
|
|
#define O_TRUNC (1<<8)
|
2012-03-04 15:06:49 -05:00
|
|
|
#define O_CLOFORK (1<<9)
|
|
|
|
|
|
|
|
#define FD_CLOEXEC (1<<0)
|
|
|
|
#define FD_CLOFORK (1<<1)
|
2012-02-23 07:15:40 -05:00
|
|
|
|
2012-03-04 15:36:40 -05:00
|
|
|
#define F_SETFD 0
|
|
|
|
#define F_GETFD 1
|
|
|
|
|
2012-02-23 07:15:40 -05:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|