Deleted Added
sdiff udiff text old ( 9141:593fe25c86a6 ) new ( 9146:a61fdbbc1d45 )
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

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

88
89
90 //@}
91
92 /// For mmap().
93 static const unsigned TGT_MAP_ANONYMOUS = 0x20;
94 static const unsigned TGT_MAP_FIXED = 0x10;
95
96 /// For table().
97 static const int TBL_SYSINFO = 12;
98
99 /// Limit struct for getrlimit/setrlimit.
100 struct rlimit {
101 uint32_t rlim_cur; //!< soft limit
102 uint32_t rlim_max; //!< hard limit
103 };
104
105 /// For gettimeofday().
106 struct timeval {

--- 99 unchanged lines hidden ---