49 lines
557 B
C
49 lines
557 B
C
/*++
|
|
|
|
Copyright (c) 1990 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
jxusage.c
|
|
|
|
Abstract:
|
|
|
|
The module reports the io resources in use by the JAZZ 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;
|
|
}
|