1 | // /** @file
|
---|
2 | // A shell application that displays statistical information about variable usage.
|
---|
3 | //
|
---|
4 | // This application can display statistical information about variable usage for SMM variable
|
---|
5 | // driver and non-SMM variable driver.
|
---|
6 | // Note that if Variable Dxe/Smm driver doesn't enable the feature by setting PcdVariableCollectStatistics
|
---|
7 | // as TRUE, the application will not display variable statistical information.
|
---|
8 | //
|
---|
9 | // Copyright (c) 2007 - 2016, Intel Corporation. All rights reserved.<BR>
|
---|
10 | //
|
---|
11 | // SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
12 | //
|
---|
13 | // **/
|
---|
14 |
|
---|
15 |
|
---|
16 | #string STR_MODULE_ABSTRACT #language en-US "A shell application that displays statistical information about variable usage"
|
---|
17 |
|
---|
18 | #string STR_MODULE_DESCRIPTION #language en-US "This application can display statistical information about variable usage for SMM variable driver and non-SMM variable driver. Note that if Variable DXE/SMM driver doesn't enable the feature by setting PcdVariableCollectStatistics as TRUE, the application will not display variable statistical information."
|
---|
19 |
|
---|