GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Started(special file) Started(special file)

Started — a tool has started

Started(in string vendor,

in string toolName,
in string toolVersion);

The Started notice announces that a tool has started.

The vendor argument is the vendor of the started tool.

The toolName argument is the name of the started tool.

The toolVersion argument is the version of the started tool.

None.

A pattern observing the Started request can be registered as in the following example:

Tt_pattern pat = tt_pattern_create();
tt_pattern_category_set(pat, TT_OBSERVE);
tt_pattern_scope_add(pat, TT_SESSION);
char *ses = tt_default_session();
tt_pattern_session_add(pat, ses);
tt_free(ses);
tt_pattern_op_add(pat, Tttk_Started);
tt_pattern_op_add(pat, Tttk_Stopped);
tt_pattern_callback_add(pat, my_callback);
tt_pattern_register(pat);

The Started request can be sent with ttdt_open(3).

tt_free(3), tt_pattern_callback_add(3), tt_pattern_category_set(3), tt_pattern_op_add(3), tt_pattern_register(3), tt_pattern_scope_add(3), tt_pattern_session_add(3), ttdt_open(3); Stopped notice.


Search for    or go to Top of page |  Section s |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.