From f4ac9a9693401e472daa517c629edc298d9cb39c Mon Sep 17 00:00:00 2001 From: Philippe Houdoin Date: Wed, 25 Jul 2007 23:44:00 +0000 Subject: [PATCH] DPC module interface is not binary compatible with Be's own DPC. Make our DPC named differently to avoid this confusion. Detected while testing our ACPI (which needs our DPC) under R5... git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21703 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/drivers/dpc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/os/drivers/dpc.h b/headers/os/drivers/dpc.h index 389935487e..198f683717 100644 --- a/headers/os/drivers/dpc.h +++ b/headers/os/drivers/dpc.h @@ -12,7 +12,7 @@ extern "C" { #endif -#define B_DPC_MODULE_NAME "generic/dpc/v1" +#define B_DPC_MODULE_NAME "generic/dpc/haiku/v1" typedef void (*dpc_func) (void *arg);