49 lines
556 B
C
49 lines
556 B
C
|
/*++
|
||
|
|
||
|
Copyright (c) 1990 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
sxusage.c
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
The module reports the io resources in use by the SGI hal.
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#include "halp.h"
|
||
|
|
||
|
|
||
|
VOID
|
||
|
HalReportResourceUsage(
|
||
|
VOID
|
||
|
)
|
||
|
/*++
|
||
|
|
||
|
Routine Description:
|
||
|
|
||
|
Arguments:
|
||
|
|
||
|
Return Value:
|
||
|
|
||
|
--*/
|
||
|
{
|
||
|
//
|
||
|
// BUGBUG: hal resouce usage reporting needs to be added here
|
||
|
//
|
||
|
|
||
|
// IoReportHalResourceUsage (
|
||
|
// HalName,
|
||
|
// RawResourceList,
|
||
|
// TranslatedResourceList,
|
||
|
// ListSize
|
||
|
// );
|
||
|
|
||
|
return;
|
||
|
}
|