2 * Copyright 2007-2008, Haiku Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License
16 #define B_DPC_MODULE_NAME "generic/dpc/v1"
18 typedef void (*dpc_func
) (void *arg
);
23 status_t (*new_dpc_queue
)(void **queue
, const char *name
, int32 priority
);
24 status_t (*delete_dpc_queue
)(void *queue
);
25 status_t (*queue_dpc
)(void *queue
, dpc_func func
, void *arg
);
33 #endif // _DPC_MODULE_H_