Deleted Added
sdiff udiff text old ( 9112:6e854ea87bab ) new ( 9141:593fe25c86a6 )
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;

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

142 };
143
144 // For writev/readv
145 struct tgt_iovec {
146 uint64_t iov_base; // void *
147 uint64_t iov_len;
148 };
149
150
151 /// For getrusage().
152 struct rusage {
153 struct timeval ru_utime; //!< user time used
154 struct timeval ru_stime; //!< system time used
155 int64_t ru_maxrss; //!< max rss
156 int64_t ru_ixrss; //!< integral shared memory size
157 int64_t ru_idrss; //!< integral unshared data "
158 int64_t ru_isrss; //!< integral unshared stack "

--- 24 unchanged lines hidden ---