Changeset 58466 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePostCodeLibDebug
- Timestamp:
- Oct 29, 2015 4:30:44 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103777
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
- Property svn:mergeinfo changed
/vendor/edk2/current merged: 103769-103776
- Property svn:mergeinfo changed
-
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePostCodeLibDebug/BasePostCodeLibDebug.inf
r58459 r58466 24 24 MODULE_TYPE = BASE 25 25 VERSION_STRING = 1.0 26 LIBRARY_CLASS = PostCodeLib 26 LIBRARY_CLASS = PostCodeLib 27 27 28 28 -
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePostCodeLibDebug/PostCode.c
r48674 r58466 3 3 4 4 Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR> 5 This program and the accompanying materials 6 are licensed and made available under the terms and conditions of the BSD License 7 which accompanies this distribution. The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php. 5 This program and the accompanying materials 6 are licensed and made available under the terms and conditions of the BSD License 7 which accompanies this distribution. The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php. 9 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 12 13 13 **/ … … 22 22 Sends an 32-bit value to a POST card. 23 23 24 Sends the 32-bit value specified by Value to a POST card, and returns Value. 25 Some implementations of this library function may perform I/O operations 26 directly to a POST card device. Other implementations may send Value to 27 ReportStatusCode(), and the status code reporting mechanism will eventually 24 Sends the 32-bit value specified by Value to a POST card, and returns Value. 25 Some implementations of this library function may perform I/O operations 26 directly to a POST card device. Other implementations may send Value to 27 ReportStatusCode(), and the status code reporting mechanism will eventually 28 28 display the 32-bit value on the status reporting device. 29 30 PostCode() must actively prevent recursion. If PostCode() is called while 31 processing another any other Post Code Library function, then 29 30 PostCode() must actively prevent recursion. If PostCode() is called while 31 processing another any other Post Code Library function, then 32 32 PostCode() must return Value immediately. 33 33 … … 52 52 53 53 Sends the 32-bit value specified by Value to a POST card, and returns Value. 54 If Description is not NULL, then the ASCII string specified by Description is 55 also passed to the handler that displays the POST card value. Some 56 implementations of this library function may perform I/O operations directly 57 to a POST card device. Other implementations may send Value to ReportStatusCode(), 58 and the status code reporting mechanism will eventually display the 32-bit 59 value on the status reporting device. 54 If Description is not NULL, then the ASCII string specified by Description is 55 also passed to the handler that displays the POST card value. Some 56 implementations of this library function may perform I/O operations directly 57 to a POST card device. Other implementations may send Value to ReportStatusCode(), 58 and the status code reporting mechanism will eventually display the 32-bit 59 value on the status reporting device. 60 60 61 PostCodeWithDescription()must actively prevent recursion. If 62 PostCodeWithDescription() is called while processing another any other Post 63 Code Library function, then PostCodeWithDescription() must return Value 61 PostCodeWithDescription()must actively prevent recursion. If 62 PostCodeWithDescription() is called while processing another any other Post 63 Code Library function, then PostCodeWithDescription() must return Value 64 64 immediately. 65 65 66 66 @param Value The 32-bit value to write to the POST card. 67 @param Description The pointer to an ASCII string that is a description of the 68 POST code value. This is an optional parameter that may 67 @param Description The pointer to an ASCII string that is a description of the 68 POST code value. This is an optional parameter that may 69 69 be NULL. 70 70 … … 87 87 Returns TRUE if POST Codes are enabled. 88 88 89 This function returns TRUE if the POST_CODE_PROPERTY_POST_CODE_ENABLED 89 This function returns TRUE if the POST_CODE_PROPERTY_POST_CODE_ENABLED 90 90 bit of PcdPostCodePropertyMask is set. Otherwise FALSE is returned. 91 91 92 @retval TRUE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of 92 @retval TRUE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of 93 93 PcdPostCodeProperyMask is set. 94 @retval FALSE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of 94 @retval FALSE The POST_CODE_PROPERTY_POST_CODE_ENABLED bit of 95 95 PcdPostCodeProperyMask is clear. 96 96
Note:
See TracChangeset
for help on using the changeset viewer.