Deleted Added
sdiff udiff text old ( 9141:593fe25c86a6 ) new ( 9146:a61fdbbc1d45 )
full compact
1/*
2 * Copyright (c) 2004-2009 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

169 case TGT_TCGETA:
170 return true;
171 default:
172 return false;
173 }
174 }
175
176
177 /// For getrusage().
178 struct rusage {
179 struct timeval ru_utime; //!< user time used
180 struct timeval ru_stime; //!< system time used
181 int64_t ru_maxrss; //!< max rss
182 int64_t ru_ixrss; //!< integral shared memory size
183 int64_t ru_idrss; //!< integral unshared data "
184 int64_t ru_isrss; //!< integral unshared stack "
185 int64_t ru_minflt; //!< page reclaims - total vmfaults

--- 23 unchanged lines hidden ---