f4ac9a9693
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
32 lines
606 B
C
32 lines
606 B
C
/* DPC module API
|
|
* Copyright 2007, Haiku Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License
|
|
*/
|
|
|
|
#ifndef _DPC_MODULE_H_
|
|
#define _DPC_MODULE_H_
|
|
|
|
#include <module.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define B_DPC_MODULE_NAME "generic/dpc/haiku/v1"
|
|
|
|
typedef void (*dpc_func) (void *arg);
|
|
|
|
typedef struct {
|
|
module_info info;
|
|
void * (*new_dpc_queue)(const char *name, long priority, int queue_size);
|
|
status_t (*delete_dpc_queue)(void *queue);
|
|
status_t (*queue_dpc)(void *queue, dpc_func dpc_name, void *arg);
|
|
} dpc_module_info;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|