Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

stcode(1ncs) [ultrix man page]

stcode(1ncs)															      stcode(1ncs)

Name
       stcode - translate a hexadecimal status code value to a textual message

Syntax
       stcode hex_stat_code

Description
       The  command  prints the textual message associated with a hexadecimal status code.  This command is useful when a program produces a hexa-
       decimal status code instead of a textual message.

       The command processes predefined status codes.  No provision is currently made to add user-defined status codes to the error text database.

Examples
       Translate the hexadecimal status code 1c010003:
       # stcode 1c010003
       unknown interface (network computing system/RPC runtime)

																      stcode(1ncs)

Check Out this Related Man Page

rpc_unregister(3ncs)													      rpc_unregister(3ncs)

Name
       rpc_unregister - unregister an interface (server only)

Syntax
       #include <idl/c/rpc.h>

       void rpc_$unregister(ifspec, status)
       rpc_$if_spec_t *ifspec;
       status_$t *status;

Arguments
       ifspec		   An  rpc_$if_spec_t.	 An  interface specifier obtained from a previous RPC register call.  The interface being unregis-
			   tered.

       status		   The completion status.  If the completion status returned in is equal to status_$ok , then the routine that supplied it
			   was successful.

Description
       The  routine  unregisters  an interface that the server previously registered with the RPC runtime library.  After an interface is unregis-
       tered, the RPC runtime library will not pass requests for that interface to the server.

       If a server uses several or routines to register an interface more than once, then it must call an equal number of times to unregister  the
       interface.

Examples
       The following statement unregisters a matrix arithmetic interface:
       rpc_$unregister (&matrix_$if_spec, &status);

Diagnostics
       This section lists status codes for errors returned by this routine in

       rpc_$op_rng_error   The requested operation does not correspond to a valid operation in the requested interface.

       rpc_$unk_if	   The	requested interface is not known.  It is not registered in the server, the version number of the registered inter-
			   face is different from the version number specified in the request, or the UUID in the request does not match the  UUID
			   of the registered interface.

       rpc_$not_in_call    An internal error.

       rpc_$proto_error    An internal protocol error.

Files
See Also
       intro(3ncs), rpc_register(3ncs), rpc_register_mgr(3ncs), rpc_register_object(3ncs)

															      rpc_unregister(3ncs)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Change Lines into column

Hello how can I change lines into column? e.g. I have a Text file which looks like: Surename...... Address..... Phonenumber..... Zipcode.. Surename... Address.... Zipcode Surename... I want that Surename is in column 1 and every following line should be in additional colums.... (5 Replies)
Discussion started by: witchblade
5 Replies

2. Shell Programming and Scripting

Appending line

Hi, I have a file with below contents: vi testcode.txt 123, 2, 3, 4, 5, 6, 7, 8 The above is an example, but in real I have hundreds of lines in the file, and I would like to append all the remaining lines to first line, and it should be looks below: 123,2,3,4,5,6,7,8 (5 Replies)
Discussion started by: khchong
5 Replies

3. Shell Programming and Scripting

Save files in directory as txt

wget -x -i link.txt The above downloads and create unique entries for the 97 links in the text file. However, each new file is saved as CM080 with a FILE extention. Is there a way to convert each file in that directory to a .txt? The 97 files are in... (12 Replies)
Discussion started by: cmccabe
12 Replies

4. Shell Programming and Scripting

Question regarding whence program

Hi all, In production code, if using the whence command it picks the production file.if I am using the test code file. by using whence command it not picking the file. do you have any idea on this. Whence prodcode it picks the exact path of the prodcode. whence testcode. it... (1 Reply)
Discussion started by: ramkumar15
1 Replies

5. Programming

MYSQL merge csv data with exisiting table

I have a MYSQL table with demographic data. The addresses contained in the table were entered manually before the advent of online postcode lookup software and, hence, there are a lot of errors when using automated online mailing checking software. I plan to export the data as csv file for a 3rd... (1 Reply)
Discussion started by: barrydocks
1 Replies