dtrace.c (a386cc11a86ecb60f5a48078d22c1500e2ad003e) dtrace.c (d339a29bb4765c4b6883a935cf69b669cd05bca0)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 103 unchanged lines hidden (view full) ---

112 * part of the supported interface to DTrace, and they are therefore not
113 * checked comprehensively. Further, these variables should not be tuned
114 * dynamically via "mdb -kw" or other means; they should only be tuned via
115 * /etc/system.
116 */
117int dtrace_destructive_disallow = 0;
118dtrace_optval_t dtrace_nonroot_maxsize = (16 * 1024 * 1024);
119size_t dtrace_difo_maxsize = (256 * 1024);
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 103 unchanged lines hidden (view full) ---

112 * part of the supported interface to DTrace, and they are therefore not
113 * checked comprehensively. Further, these variables should not be tuned
114 * dynamically via "mdb -kw" or other means; they should only be tuned via
115 * /etc/system.
116 */
117int dtrace_destructive_disallow = 0;
118dtrace_optval_t dtrace_nonroot_maxsize = (16 * 1024 * 1024);
119size_t dtrace_difo_maxsize = (256 * 1024);
120dtrace_optval_t dtrace_dof_maxsize = (256 * 1024);
120dtrace_optval_t dtrace_dof_maxsize = (8 * 1024 * 1024);
121size_t dtrace_global_maxsize = (16 * 1024);
122size_t dtrace_actions_max = (16 * 1024);
123size_t dtrace_retain_max = 1024;
124dtrace_optval_t dtrace_helper_actions_max = 1024;
125dtrace_optval_t dtrace_helper_providers_max = 32;
126dtrace_optval_t dtrace_dstate_defsize = (1 * 1024 * 1024);
127size_t dtrace_strsize_default = 256;
128dtrace_optval_t dtrace_cleanrate_default = 9900990; /* 101 hz */

--- 16764 unchanged lines hidden ---
121size_t dtrace_global_maxsize = (16 * 1024);
122size_t dtrace_actions_max = (16 * 1024);
123size_t dtrace_retain_max = 1024;
124dtrace_optval_t dtrace_helper_actions_max = 1024;
125dtrace_optval_t dtrace_helper_providers_max = 32;
126dtrace_optval_t dtrace_dstate_defsize = (1 * 1024 * 1024);
127size_t dtrace_strsize_default = 256;
128dtrace_optval_t dtrace_cleanrate_default = 9900990; /* 101 hz */

--- 16764 unchanged lines hidden ---