Query: tt_open
OS: hpux
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
tt_open(library call) tt_open(library call)NAMEtt_open -- return the process identifier for the calling processSYNOPSIS#include <Tt/tt_c.h> char *tt_open(void)DESCRIPTIONThe tt_open function returns the process identifier for the calling process.RETURN VALUEThe tt_open function also sets this identifier as the default procid for the process. The tt_open(3) function is typically the first ToolTalk function called by a process. The application must call tt_open(3) before other tt_ calls are made. However, there are two exceptions: tt_default_session_set(3) and tt_X_session(3) can be called before tt_open. A process can call tt_open more than once to obtain multiple procids. To open another session, the process must make the following calls in the order specified: tt_default_session_set tt_openRETURN VALUEUpon successful completion, the tt_open function returns the character value that uniquely identifies the process. The application can use tt_ptr_error(3) to extract one of the following Tt_status values from the returned pointer: TT_OK The operation completed successfully. TT_ERR_NOMP The ttsession(1) process is not running and the ToolTalk service cannot restart it.APPLICATION USAGEThe application should use tt_free(3) to free any data stored in the address returned by the ToolTalk API. Each procid has its own associated file descriptor, and can join another session. To switch to another procid, the application should call tt_default_procid_set.SEE ALSOTt/tt_c.h - Tttt_c(5), tt_fd(3), tt_default_procid(3), tt_default_procid_set(3), tt_default_session(3), tt_default_session_set(3), tt_ptr_error(3), tt_free(3). tt_open(library call)
Related Man Pages |
---|
tt_default_session_set(3) - hpux |
tt_file_netfile(3) - hpux |
tt_netfile_file(3) - hpux |
tt_pattern_user(3) - hpux |
tt_thread_session_set(3) - hpux |
Similar Topics in the Unix Linux Community |
---|
Process creation |
Help me in finding process name and argument list without using pstat() |