Deleted Added
sdiff udiff text old ( 7441:be2acdfb8bdc ) new ( 8600:b0d7c64ada19 )
full compact
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 77 unchanged lines hidden (view full) ---

86 static const int TGT_O_NOATIME = 01000000; //!< O_NOATIME
87 static const int TGT_O_CLOEXEC = 02000000; //!< O_NOATIME
88
89
90 //@}
91
92 /// For mmap().
93 static const unsigned TGT_MAP_ANONYMOUS = 0x20;
94
95 //@{
96 /// For getrusage().
97 static const int TGT_RUSAGE_SELF = 0;
98 static const int TGT_RUSAGE_CHILDREN = -1;
99 static const int TGT_RUSAGE_BOTH = -2;
100 //@}
101

--- 139 unchanged lines hidden ---