~ubuntu-branches/ubuntu/precise/eglibc/precise

« back to all changes in this revision

Viewing changes to ports/sysdeps/unix/bsd/ultrix4/bits/fcntl.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2011-10-04 17:48:26 UTC
  • mfrom: (216.1.23 oneiric)
  • Revision ID: package-import@ubuntu.com-20111004174826-2cyb9ewn3ucymlsx
Tags: 2.13-20ubuntu5
libc6-dev: Don't break the current {gnat,gcj}-4.4-base versons. LP: #853688.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* O_*, F_*, FD_* bit values for Ultrix 4.
 
2
   Copyright (C) 1991, 1992, 1997, 2004 Free Software Foundation, Inc.
 
3
   This file is part of the GNU C Library.
 
4
 
 
5
   The GNU C Library is free software; you can redistribute it and/or
 
6
   modify it under the terms of the GNU Lesser General Public
 
7
   License as published by the Free Software Foundation; either
 
8
   version 2.1 of the License, or (at your option) any later version.
 
9
 
 
10
   The GNU C Library is distributed in the hope that it will be useful,
 
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
   Lesser General Public License for more details.
 
14
 
 
15
   You should have received a copy of the GNU Lesser General Public
 
16
   License along with the GNU C Library; if not, write to the Free
 
17
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 
18
   02111-1307 USA.  */
 
19
 
 
20
#ifndef _FCNTL_H
 
21
#error "Never use <bits/fcntl.h> directly; include <fcntl.h> instead."
 
22
#endif
 
23
 
 
24
 
 
25
/* File access modes for `open' and `fcntl'.  */
 
26
#define O_RDONLY        0       /* Open read-only.  */
 
27
#define O_WRONLY        1       /* Open write-only.  */
 
28
#define O_RDWR          2       /* Open read/write.  */
 
29
 
 
30
 
 
31
/* Bits OR'd into the second argument to open.  */
 
32
#define O_CREAT         0x0200  /* Create file if it doesn't exist.  */
 
33
#define O_EXCL          0x0800  /* Fail if file already exists.  */
 
34
#define O_TRUNC         0x0400  /* Truncate file to zero length.  */
 
35
#ifdef  __USE_MISC
 
36
#define O_ASYNC         0x0040  /* Send SIGIO to owner when data is ready.  */
 
37
#define O_FSYNC         0x8000  /* Synchronous writes.  */
 
38
#define O_SYNC          O_FSYNC
 
39
#define O_BLKINUSE      0x1000  /* Block if "in use".  */
 
40
#define O_BLKANDSET     0x3000  /* Block, test and set "in use" flag.  */
 
41
#define O_TERMIO        0x40000 /* "termio style program".  */
 
42
#endif
 
43
#define O_NOCTTY        0x80000 /* Don't assign a controlling terminal.  */
 
44
 
 
45
/* File status flags for `open' and `fcntl'.  */
 
46
#define O_APPEND        0x0008  /* Writes append to the file.  */
 
47
#define O_NONBLOCK      0x20000 /* Non-blocking I/O.  */
 
48
 
 
49
#ifdef __USE_BSD
 
50
#define O_NDELAY        0x0004
 
51
#endif
 
52
 
 
53
#ifdef __USE_BSD
 
54
/* Bits in the file status flags returned by F_GETFL.
 
55
   These are all the O_* flags, plus FREAD and FWRITE, which are
 
56
   independent bits set by which of O_RDONLY, O_WRONLY, and O_RDWR, was
 
57
   given to `open'.  */
 
58
#define FREAD           1
 
59
#define FWRITE          2
 
60
 
 
61
/* Traditional BSD names the O_* bits.  */
 
62
#define FASYNC          O_ASYNC
 
63
#define FCREAT          O_CREAT
 
64
#define FEXCL           O_EXCL
 
65
#define FTRUNC          O_TRUNC
 
66
#define FNOCTTY         O_NOCTTY
 
67
#define FFSYNC          O_FSYNC
 
68
#define FSYNC           O_SYNC
 
69
#define FAPPEND         O_APPEND
 
70
#define FNONBLOCK       O_NONBLOCK
 
71
#define FNDELAY         O_NDELAY
 
72
#define FNBLOCK         O_NONBLOCK
 
73
#define FTERMIO         O_TERMIO
 
74
#define FNOCTTY         O_NOCTTY
 
75
#define FSYNCRON        O_FSYNC
 
76
#define FBLKINUSE       O_BLKINUSE
 
77
#define FBLKANDSET      O_BLKANDSET
 
78
#endif
 
79
 
 
80
/* Mask for file access modes.  This is system-dependent in case
 
81
   some system ever wants to define some other flavor of access.  */
 
82
#define O_ACCMODE       (O_RDONLY|O_WRONLY|O_RDWR)
 
83
 
 
84
/* Values for the second argument to `fcntl'.  */
 
85
#define F_DUPFD         0       /* Duplicate file descriptor.  */
 
86
#define F_GETFD         1       /* Get file descriptor flags.  */
 
87
#define F_SETFD         2       /* Set file descriptor flags.  */
 
88
#define F_GETFL         3       /* Get file status flags.  */
 
89
#define F_SETFL         4       /* Set file status flags.  */
 
90
#if defined __USE_BSD || defined __USE_UNIX98
 
91
#define F_GETOWN        5       /* Get owner (receiver of SIGIO).  */
 
92
#define F_SETOWN        6       /* Set owner (receiver of SIGIO).  */
 
93
#endif
 
94
#define F_GETLK         7       /* Get record locking info.  */
 
95
#define F_SETLK         8       /* Set record locking info (non-blocking).  */
 
96
#define F_SETLKW        9       /* Set record locking info (blocking).  */
 
97
#ifdef  __USE_MISC
 
98
#define F_SETSYN        10      /* Set synchronous writing.  */
 
99
#define F_CLRSYN        10      /* Clear synchronous writing.  */
 
100
#endif
 
101
 
 
102
/* File descriptor flags used with F_GETFD and F_SETFD.  */
 
103
#define FD_CLOEXEC      1       /* Close on exec.  */
 
104
 
 
105
 
 
106
#include <bits/types.h>
 
107
 
 
108
/* The structure describing an advisory lock.  This is the type of the third
 
109
   argument to `fcntl' for the F_GETLK, F_SETLK, and F_SETLKW requests.  */
 
110
struct flock
 
111
  {
 
112
    short int l_type;   /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK.  */
 
113
    short int l_whence; /* Where `l_start' is relative to (like `lseek').  */
 
114
    __off_t l_start;    /* Offset where the lock begins.  */
 
115
    __off_t l_len;      /* Size of the locked area; zero means until EOF.  */
 
116
    __pid_t l_pid;      /* Process holding the lock.  */
 
117
  };
 
118
 
 
119
/* Values for the `l_type' field of a `struct flock'.  */
 
120
#define F_RDLCK 1       /* Read lock.  */
 
121
#define F_WRLCK 2       /* Write lock.  */
 
122
#define F_UNLCK 3       /* Remove lock.  */