Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tt_message_arg_ival_set(3) [hpux man page]

tt_message_arg_ival_set(library call)									     tt_message_arg_ival_set(library call)

NAME
tt_message_arg_ival_set -- add an integer value in a message argument SYNOPSIS
#include <Tt/tt_c.h> Tt_status tt_message_arg_ival_set( Tt_message m, int n, int value); DESCRIPTION
The tt_message_arg_ival_set function adds an integer value in the nth message argument. This function also changes the value of an existing nth message argument to an integer. The m argument is the opaque handle for the message involved in this operation. The n argument is the number of the argument to be set. The first argument is numbered zero. The value argument is the contents for the message argument. RETURN VALUE
Upon successful completion, the tt_message_arg_ival_set function returns the status of the operation as one of the following Tt_status val- ues: TT_OK The operation completed successfully. TT_ERR_NOMP The ttsession(1) process is not running and the ToolTalk service cannot restart it. TT_ERR_NUM The integer value passed was invalid (out of range). TT_ERR_POINTER The pointer passed does not point to an object of the correct type for this operation. SEE ALSO
Tt/tt_c.h - Tttt_c(5), tt_message_iarg_add(3), tt_message_arg_val_set(3), tt_message_arg_bval_set(3). tt_message_arg_ival_set(library call)

Check Out this Related Man Page

tt_message_arg_xval_set(library call)									     tt_message_arg_xval_set(library call)

NAME
tt_message_arg_xval_set -- serialize and set data into an existing message argument SYNOPSIS
#include <Tt/tt_c.h> Tt_status tt_message_arg_xval_set( Tt_message m, int n, xdrproc_t xdr_proc, void *value); DESCRIPTION
The tt_message_arg_xval_set function serializes and sets data into an existing message argument. The m argument is the opaque handle for the message involved in this operation. The n argument is the number of the argument to be changed. The first argument is numbered zero. The xdr_proc argument causes tt_message_arg_xval_set to serialize the data pointed to by value and store it as a byte string value of the nth argument of the message. The value argument is the data to be serialized. RETURN VALUE
Upon successful completion, the tt_message_arg_xval_set function returns the status of the operation as one of the following Tt_status val- ues: TT_OK The operation completed successfully. TT_ERR_MODE The specified Tt_mode is invalid. TT_ERR_NOMP The ttsession(1) process is not running and the ToolTalk service cannot restart it. TT_ERR_POINTER The pointer passed does not point to an object of the correct type for this operation. TT_ERR_NUM The integer value passed was invalid (out of range). TT_ERR_XDR The XDR procedure failed on the given data, or evaluated to a zero-length expression. SEE ALSO
Tt/tt_c.h - Tttt_c(5) tt_message_arg_xval_set(library call)
Man Page

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Grepping nth line number

How do you grep every nth line number from a file? (2 Replies)
Discussion started by: shabs1985
2 Replies

2. Shell Programming and Scripting

Replacing nth occurrence

There is already one thread with the same heading. But here the case is little different. i have a line which have a field separator '|' abc|def|ghi|jkl|mno|pqr|stu|vwx|yz I want to replace every 3rd occurance + next character with the same + newline character.. I mean i want to enter a... (6 Replies)
Discussion started by: ratheeshjulk
6 Replies

3. Shell Programming and Scripting

Read file from nth line to specific character

Hi, I want to read the file from nth line (where n is an integer) to until I encounter @ char. Can any one please help me how to do this? Thanks. (3 Replies)
Discussion started by: laalesh
3 Replies

4. Shell Programming and Scripting

Print every nth line

Dear all, How to print every nth line. File like this: File input: 1 1 1 1 1 1 2 2 2 3 3 3 3 3 3 (3 Replies)
Discussion started by: attila
3 Replies

5. Shell Programming and Scripting

Print nth line in a file

Bash/Oracle Linux 6.4 A basic requirement. How can I get nth line of a file printed ? Can I use grep in this case ? Example: In the below file, 12th line is "Kernel parameter check passed for rmem_max" . I just want the 12 line to be printed. # cat sometext.txt Kernel version check... (2 Replies)
Discussion started by: John K
2 Replies

6. Shell Programming and Scripting

Trim after nth occurrence with loop

Hello, Below command trims right after the nth occurrence of a string. When I try in while loop, it is not working. In Terminal IFS=/ ; read -ra val < Textfile ; echo "${val:0:3}" It gives only one line: sunday/monday/tuesday Textfile: sunday/monday/tuesday/wednesday/thursday... (2 Replies)
Discussion started by: baris35
2 Replies