Changes between Version 2 and Version 3 of DTrace
- Timestamp:
- 12/12/09 02:36:00 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DTrace
v2 v3 5 5 It is straight forward to extend the current implementation with additional probes, and due to the lightweight nature of DTrace, new probes could inspect the runtime system and running Haskell program in an even more fine-grained manner. 6 6 7 == Probes == 7 == Probe description == 8 9 The following probes are available: 10 `create-thread (capability, tid)`:: 11 Triggered when a new runtime thread is created. Reports the capability on which the thread is created and the new thread's thread id. 12 `run-thread (capability, tid)`:: 13 Indicates that the given thread starts to run on the specified capability. 14 `stop-thread (capability, tid)`:: 15 The identified thread stops execution on the given capability. 16 17 == Probe definition == 8 18 9 19 The provider is defined as follows:
