Gets environment of a process.
#include <procinfo.h> #include <sys/types.h>
int getevars (processBuffer, bufferLen, argsBuffer, argsLen) struct procsinfo *processBuffer; int bufferLen; char *argsBuffer; int argsLen;
The getevars subroutine returns the environment that was passed to a command when it was started. Only one process can be examined per call to getevars.
The getevars subroutine uses the pi_pid field of processBuffer to determine which process to look for. bufferLen should be set to size of struct procsinfo. Parameters are returned in argsBuffer, which should be allocated by the caller. The size of this array must be given in argsLen.
On return, argsBuffer consists of a succession of strings, each terminated with a null character (ascii `\0'). Hence, two consecutive NULLs indicate the end of the list.
Note: The arguments may be changed asynchronously by the process, but results are not guaranteed to be consistent.
If successful, the getevars subroutine returns zero. Otherwise, a value of -1 is returned and the errno global variable is set to indicate the error.
The getevars subroutine does not succeed if the following are true:
This subroutine is part of the Base Operating System (BOS) Runtime.
The getargs, getpid, getpgrp, getppid, or getthrds subroutines.
The ps command.