Moved public interface into its own header file.

Fixed most obvious issues, as reported by Marcus and Axel.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19765 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Philippe Houdoin
2007-01-10 20:28:45 +00:00
parent f9e49fed71
commit a5347f68f8
3 changed files with 72 additions and 36 deletions
+31
View File
@@ -0,0 +1,31 @@
/* 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/v1"
typedef void (*dpc_func) (void *arg);
typedef struct {
module_info info;
void * (*new_dpc_thread)(const char *name, long priority, int queue_size);
status_t (*delete_dpc_thread)(void *thread);
status_t (*queue_dpc)(void *thread, dpc_func dpc_name, void *arg);
} dpc_module_info;
#ifdef __cplusplus
}
#endif
#endif