~ubuntu-branches/ubuntu/vivid/musl/vivid

« back to all changes in this revision

Viewing changes to arch/or1k/bits/fcntl.h

  • Committer: Package Import Robot
  • Author(s): Kevin Bortis
  • Date: 2014-05-26 22:45:52 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20140526224552-qrtsct934q29xo0x
Tags: 1.1.4-1
* Import upstream version 1.1.4. (Closes: #754758)
* Fixes possible stack-based buffer overflow CVE-2014-3484 (Closes: #750815) 
* Includes fix for build regression on armhf and armel

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#define O_CREAT        0100
 
2
#define O_EXCL         0200
 
3
#define O_NOCTTY       0400
 
4
#define O_TRUNC       01000
 
5
#define O_APPEND      02000
 
6
#define O_NONBLOCK    04000
 
7
#define O_DSYNC      010000
 
8
#define O_SYNC     04010000
 
9
#define O_RSYNC    04010000
 
10
#define O_DIRECTORY 0200000
 
11
#define O_NOFOLLOW  0400000
 
12
#define O_CLOEXEC  02000000
 
13
 
 
14
#define O_ASYNC      020000
 
15
#define O_DIRECT     040000
 
16
#define O_LARGEFILE 0100000
 
17
#define O_NOATIME  01000000
 
18
#define O_TMPFILE 020200000
 
19
#define O_NDELAY O_NONBLOCK
 
20
 
 
21
#define F_DUPFD  0
 
22
#define F_GETFD  1
 
23
#define F_SETFD  2
 
24
#define F_GETFL  3
 
25
#define F_SETFL  4
 
26
 
 
27
#define F_SETOWN 8
 
28
#define F_GETOWN 9
 
29
#define F_SETSIG 10
 
30
#define F_GETSIG 11
 
31
 
 
32
#define F_GETLK 12
 
33
#define F_SETLK 13
 
34
#define F_SETLKW 14
 
35
 
 
36
#define F_SETOWN_EX 15
 
37
#define F_GETOWN_EX 16
 
38
 
 
39
#define F_GETOWNER_UIDS 17