Deleted Added
sdiff udiff text old ( 4434:2ea7b6e0b78f ) new ( 4793:315e1db6bd39 )
full compact
1/*
2 * Copyright (c) 2001-2005 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;

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

209 uint64_t __egid;
210
211 // pid of the process and it's parent
212 uint64_t __pid;
213 uint64_t __ppid;
214
215 public:
216
217 inline uint64_t uid() {return __uid;}
218 inline uint64_t euid() {return __euid;}
219 inline uint64_t gid() {return __gid;}
220 inline uint64_t egid() {return __egid;}
221 inline uint64_t pid() {return __pid;}
222 inline uint64_t ppid() {return __ppid;}
223
224 std::string

--- 36 unchanged lines hidden ---