mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 15:43:19 +00:00
24 lines
621 B
C
24 lines
621 B
C
/* $Id$
|
|
*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: hal/halx86/generic/ipi.c
|
|
* PURPOSE: Miscellaneous hardware functions
|
|
* PROGRAMMER: Eric Kohl (ekohl@rz-online.de)
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#include <hal.h>
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
/* FUNCTIONS ****************************************************************/
|
|
|
|
VOID STDCALL
|
|
HalRequestIpi(ULONG ProcessorNo)
|
|
{
|
|
DPRINT("HalRequestIpi(ProcessorNo %lu)\n", ProcessorNo);
|
|
}
|
|
|
|
/* EOF */
|