Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Skipped - Unit
Tests Skipped - Build Status
Buildable 65542 Build 62425: arc lint + arc unit
Event Timeline
share/man/man4/dtrace_dtmalloc.4 | ||
---|---|---|
19 | This could go on one line. |
share/man/man4/dtrace_dtmalloc.4 | ||
---|---|---|
23 | I think explaining briefly what a malloc "type" is would be useful. | |
48 | The probe argument types are already listed by dtrace -lv so I'm not sure it's useful to list them here unless you also describe what they are. Briefly, the first three arguments for each probe provide references to the malloc type internals; size is the size of the allocation; zindx is the index into the kmemzones[] array used for the allocation. In practice, size is the most useful parameter. | |
58 | It means that if the malloc type was defined by MALLOC_DEFINE(M_FOO_BAR, "foo bar", "FooBar subsystem"); the probes will be called dtmalloc::foo_bar:. |
share/man/man4/dtrace_dtmalloc.4 | ||
---|---|---|
58 | Right, I think it'd be good to make that more explicit. I'm not sure it is immediately obvious. |