Skip navigation.

ATMI C Function Reference

  Previous Next vertical dots separating previous/next from contents/index/pdf Contents View as PDF   Get Adobe Reader

 


tuxputenv(3c)

Name

tuxputenv()—Changes or adds a value to the environment.

Synopsis

#include <atmi.h>
int tuxputenv(char *string)

Description

string points to a string of the form "name=value." tuxputenv() makes the value of the environment variable name equal to value by altering an existing variable or creating a new one. In either case, the string pointed to by string becomes part of the environment.

This function provides a portable interface to environment variables across the different platforms on which the BEA Tuxedo ATMI system is supported, including those platforms that do not normally have environment variables.

Note that tuxputenv() is case-sensitive.

A thread in a multithreaded application may issue a call to tuxputenv() while running in any context state, including TPINVALIDCONTEXT.

Return Values

If tuxputenv() cannot obtain enough space, via malloc(), for an expanded environment, it returns a non-zero integer. Otherwise, it returns zero.

Portability

On MS Windows, this function overcomes the inability to share environment variables between an application and a Dynamic Link Library. The BEA Tuxedo ATMI system Workstation DLL maintains an environment copy for each application that is attached to it. This associated environment and context information is destroyed when tpterm() is called from a Windows application. The value of an environment variable could be changed after the application program calls tpterm().

We recommend using uppercase variable names for the DOS, Windows, and OS/2, environments. (tuxreadenv() converts all environment variable names to uppercase.)

See Also

tuxgetenv(3c), tuxreadenv(3c)

 

Skip navigation bar  Back to Top Previous Next