Process.py (5154:7e6431213487) Process.py (5361:e379019a1abd)
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
1# Copyright (c) 2005-2008 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright
9# notice, this list of conditions and the following disclaimer in the

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

45 env = VectorParam.String([], "environment settings")
46 cwd = Param.String('', "current working directory")
47 uid = Param.Int(100, 'user id')
48 euid = Param.Int(100, 'effective user id')
49 gid = Param.Int(100, 'group id')
50 egid = Param.Int(100, 'effective group id')
51 pid = Param.Int(100, 'process id')
52 ppid = Param.Int(99, 'parent process id')
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright
9# notice, this list of conditions and the following disclaimer in the

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

45 env = VectorParam.String([], "environment settings")
46 cwd = Param.String('', "current working directory")
47 uid = Param.Int(100, 'user id')
48 euid = Param.Int(100, 'effective user id')
49 gid = Param.Int(100, 'group id')
50 egid = Param.Int(100, 'effective group id')
51 pid = Param.Int(100, 'process id')
52 ppid = Param.Int(99, 'parent process id')
53 simpoint = Param.UInt64(0, 'simulation point at which to start simulation')