< prev index next >

src/hotspot/share/prims/jvmti.xml

Print this page
rev 59383 : [mq]: final

*** 424,435 **** <intro id="deployingAgents" label="Deploying Agents"> An agent is deployed in a platform specific manner but is typically the platform equivalent of a dynamic library. On the <tm>Windows</tm> operating system, for example, an agent library is a "Dynamic Linked Library" (DLL). ! On the <tm>Solaris</tm> Operating Environment, an agent library is a shared ! object (<code>.so</code> file). <p/> An agent may be started at VM startup by specifying the agent library name using a <internallink id="starting">command line option</internallink>. Some implementations may support a mechanism to <internallink id="onattach"> --- 424,435 ---- <intro id="deployingAgents" label="Deploying Agents"> An agent is deployed in a platform specific manner but is typically the platform equivalent of a dynamic library. On the <tm>Windows</tm> operating system, for example, an agent library is a "Dynamic Linked Library" (DLL). ! On <tm>Linux</tm> Operating Environment, an agent library is a shared object ! (<code>.so</code> file). <p/> An agent may be started at VM startup by specifying the agent library name using a <internallink id="starting">command line option</internallink>. Some implementations may support a mechanism to <internallink id="onattach">
*** 495,506 **** The <i>&lt;options&gt;</i> will be passed to the agent on start-up. For example, if the option <code>-agentlib:foo=opt1,opt2</code> is specified, the VM will attempt to load the shared library <code>foo.dll</code> from the system <code>PATH</code> under <tm>Windows</tm> or <code>libfoo.so</code> from the ! <code>LD_LIBRARY_PATH</code> under the <tm>Solaris</tm> operating ! environment. If the agent library is statically linked into the executable then no actual loading takes place. <p/> </dd> <dt><code>-agentpath:</code><i>&lt;path-to-agent&gt;</i><code>=</code><i>&lt;options&gt;</i></dt> --- 495,505 ---- The <i>&lt;options&gt;</i> will be passed to the agent on start-up. For example, if the option <code>-agentlib:foo=opt1,opt2</code> is specified, the VM will attempt to load the shared library <code>foo.dll</code> from the system <code>PATH</code> under <tm>Windows</tm> or <code>libfoo.so</code> from the ! <code>LD_LIBRARY_PATH</code> under <tm>Linux</tm>. If the agent library is statically linked into the executable then no actual loading takes place. <p/> </dd> <dt><code>-agentpath:</code><i>&lt;path-to-agent&gt;</i><code>=</code><i>&lt;options&gt;</i></dt>
*** 13325,13335 **** id="DataDumpRequest" const="JVMTI_EVENT_DATA_DUMP_REQUEST" num="71"> <description> Sent by the VM to request the agent to dump its data. This is just a hint and the agent need not react to this event. This is useful for processing command-line signals from users. For ! example, in the Java 2 SDK a CTRL-Break on Win32 and a CTRL-\ on Solaris causes the VM to send this event to the agent. </description> <origin>jvmpi</origin> <capabilities> </capabilities> --- 13324,13334 ---- id="DataDumpRequest" const="JVMTI_EVENT_DATA_DUMP_REQUEST" num="71"> <description> Sent by the VM to request the agent to dump its data. This is just a hint and the agent need not react to this event. This is useful for processing command-line signals from users. For ! example, in the Java 2 SDK a CTRL-Break on Win32 and a CTRL-\ on Linux causes the VM to send this event to the agent. </description> <origin>jvmpi</origin> <capabilities> </capabilities>
< prev index next >